-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "place-my-order-api",
"version": "1.7.0",
"description": "The REST and real-time API for place-my-order.com. Built with Feathers.",
"main": "lib/index.js",
"bin": {
"place-my-order-api": "./bin/place-my-order-api"
},
"scripts": {
"prepublish": "npm run compile",
"compile": "rm -rf lib/ && node_modules/.bin/babel -d lib/ src/",
"start": "PORT=3030 bin/place-my-order-api",
"publish": "git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"jshint": "jshint src/. test/. --config",
"mocha": "mocha test/ --recursive --compilers js:babel/register",
"test": "npm run jshint && npm run mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/donejs/place-my-order-api.git"
},
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/donejs/place-my-order-api/issues"
},
"homepage": "https://github.com/donejs/place-my-order-api",
"devDependencies": {
"jshint": "^2.7.0",
"mocha": "^2.2.5"
},
"dependencies": {
"babel": "^5.5.3",
"body-parser": "^1.12.4",
"commander": "^2.8.1",
"cors": "^2.8.5",
"feathers": "^1.3.0",
"feathers-hooks": "^0.5.0",
"feathers-nedb": "^0.1.0",
"madison": "0.0.7",
"place-my-order-assets": "^0.2.0"
},
"system": {
"npmDependencies": []
},
"bundledDependencies": [
"place-my-order-assets"
]
}