-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.66 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "node-api-server",
"description": "ES2015+ Node.js API Server that creates automatic routes based on file structure complete with policy options",
"main": "compiled/index.js",
"scripts": {
"build": "babel src --out-dir compiled",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "standard src/**/* && npm run mocha",
"mocha": "mocha test/Setup.js",
"coverage": "nyc node_modules/mocha/bin/mocha test/Setup.js",
"watch": "npm-watch"
},
"watch": {
"build": "{src}/**/*.js",
"mocha": "{src,test}/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/pizza-rolls/api-server.git"
},
"keywords": [
"sailsjs",
"alternative",
"js-data",
"es6-node",
"express-es2015",
"api",
"server",
"express api server",
"express"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/pizza-rolls/api-server/issues"
},
"dependencies": {
"body-parser": "^1.15.2",
"debug": "^2.2.0",
"express": "^4.14.0",
"lodash": "^4.15.0",
"millisecond": "^0.1.2",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"mocha": "^3.0.2",
"npm-watch": "^0.1.6",
"nyc": "^8.1.0",
"semantic-release": "^4.3.5",
"sinon": "^1.17.5",
"standard": "^8.0.0",
"supertest": "^2.0.0"
},
"standard": {
"globals": [
"Log",
"api",
"config",
"before",
"describe",
"it"
]
},
"homepage": "https://github.com/pizza-rolls/api-server#readme"
}