-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.73 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.73 KB
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
{
"name": "schema-api",
"version": "1.0.1",
"private": true,
"engines": {
"node": "6.5.0",
"npm": "3.10.3"
},
"dependencies": {
"apicache": "0.1.0",
"bluebird": "3.4.6",
"body-parser": "1.15.2",
"compression": "1.6.2",
"cors": "2.8.0",
"debug": "2.2.0",
"dotenv": "2.0.0",
"express": "4.14.0",
"express-enforces-ssl": "1.1.0",
"express-promise": "0.4.0",
"lodash": "4.15.0",
"morgan": "1.7.0",
"nconf": "0.8.4",
"schema-client": "2.2.1"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"chai-datetime": "1.4.1",
"doctoc": "1.2.0",
"eslint": "3.4.0",
"eslint-plugin-import": "1.13.0",
"mocha": "3.0.2",
"nodemon": "1.10.2",
"sinon": "1.17.5",
"sinon-as-promised": "4.0.2"
},
"eslintConfig": {
"globals": {
"__DEV__": true,
"debug": true
},
"env": {
"node": true,
"es6": true
},
"rules": {
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"no-confusing-arrow": 0,
"no-unused-vars": 1
},
"parserOptions": {
"sourceType": "module"
}
},
"scripts": {
"watch": "nodemon --harmony server.js",
"start": "node --harmony --optimize_for_size --max_old_space_size=460 --gc_interval=100 server.js",
"test": "mocha --require test/index.js --recursive test/api --timeout 1000 --slow 200",
"lint": "npm run eslint",
"eslint": "npm run eslint:root && npm run eslint:api",
"eslint:root": "eslint server.js env.js",
"eslint:api": "eslint --ext .js --ignore-path .gitignore api",
"docs": "doctoc .",
"sloc": "sloc -e \"(node_modules|build|assets|\\.html$|\\.xml$|\\.svg$)\" -k total,source,comment -f cli-table ."
}
}