-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.23 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
{
"name": "azeroth",
"version": "1.0.0",
"description": "Node web framework",
"main": "dist",
"scripts": {
"lint": "eslint src",
"build": "babel src -d dist",
"debug": "node -r babel-register index.js",
"test": "mocha --compilers js:babel-core/register --reporter spec --bail --check-leaks 'test/**/*.js'",
"test-cov": "nyc --reporter=text npm test",
"test-travis": "nyc --reporter=html --reporter=text npm test"
},
"author": "job.zhanghao@gmail.com",
"repository": "mudio/azeroth",
"license": "MIT",
"dependencies": {
"connect": "^3.6.5",
"cookie": "^0.3.1",
"debug": "^3.1.0",
"glob": "^7.1.2",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.12.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.8.0",
"mocha": "^3.5.3",
"node-mocks-http": "^1.6.6",
"nyc": "^11.4.0",
"supertest": "^3.0.0"
},
"engines": {
"node": ">= 7.x"
}
}