-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.89 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
69
70
71
72
73
74
75
{
"name": "nodejs-koa2-await",
"version": "0.5.0",
"description": "A boilerplate for writing Koa 2 apps in ES7 with Babel and Node 6.",
"engines": {
"node": ">=6.0.0",
"npm": ">=3.8"
},
"scripts": {
"start": "node dist/bin/server.js",
"build": "babel src -d dist -s",
"dev": "nodemon src/bin/server.js",
"debug": "icebug src/bin/server.js",
"debug-brk": "npm run debug -- --break",
"lint": "eslint src/ test/",
"lint-watch": "esw -w src/ test/",
"cover": "cross-env NODE_ENV=test nyc npm test"
},
"author": "Jeff Hansen",
"license": "MIT",
"dependencies": {
"awilix": "^2.2.1",
"awilix-koa": "^0.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"bristol": "^0.3.3",
"glob": "^7.1.1",
"kcors": "^1.3.1",
"koa": "^2.0.0-alpha.7",
"koa-bodyparser": "^3.0.0",
"koa-convert": "^1.2.0",
"koa-respond": "^1.0.1",
"koa-router": "^7.0.1",
"lodash": "^4.17.2",
"palin": "^2.1.0",
"source-map-support": "^0.4.7",
"yenv": "^1.0.6"
},
"devDependencies": {
"app-module-path": "^2.1.0",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-source-map-support": "0.0.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.1.8",
"chai": "^3.5.0",
"cross-env": "^3.1.3",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"eslint-watch": "^2.1.14",
"icebug": "^0.1.6",
"nodemon": "^1.11.0",
"nyc": "^10.0.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"supertest": "^2.0.1"
},
"directories": {
"test": "test"
},
"nyc": {
"sourceMap": false,
"instrument": false,
"reporter": [
"text",
"lcov"
],
"include": [
"src/**/*.js"
]
}
}