-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.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
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
76
77
78
79
80
81
82
{
"name": "koa-starter",
"description": "A boiler-plate setup for API servers with Koa",
"version": "0.0.1",
"author": "Seth Davenport <[email protected]> (http://github.com/SethDavenport)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rangle/api-koa-starter.git"
},
"bugs": {
"url": "https://github.com/rangle/rangle-starter/issues"
},
"scripts": {
"postinstall": "npm run build",
"clean": "rimraf coverage dist",
"build": "npm run clean && npm run build:transpile",
"start": "cross-env PROJECT_ENV=staging node --require babel-polyfill ./dist/app.js",
"dev": "cross-env PROJECT_ENV=local nodemon --exec babel-node -- ./src/app.js",
"test": "cross-env PROJECT_ENV=testing npm run test:ci",
"test:watch": "cross-env PROJECT_ENV=testing npm run test:mocha:watch",
"build:transpile": "babel src -d dist",
"pretest:ci": "npm run lint",
"test:ci": "cross-env NODE_ENV=test nyc --all mocha",
"test:mocha:watch": "mocha --watch",
"lint": "eslint ."
},
"dependencies": {
"babel-plugin-syntax-async-functions": "^6.1.4",
"babel-plugin-transform-regenerator": "^6.1.4",
"babel-polyfill": "^6.1.4",
"babel-preset-es2015": "^6.1.4",
"debug": "^2.2.0",
"koa": "^2.0.0",
"koa-helmet": "^2.0.0-alpha.1",
"koa-morgan": "^1.0.1",
"koa-router": "^7.0.1",
"ramda": "^0.21.0",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-plugin-istanbul": "^1.0.3",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"cross-env": "^2.0.0",
"eslint": "^3.0.1",
"mocha": "^2.4.5",
"mockery": "^1.7.0",
"nodemon": "^1.9.2",
"nyc": "^7.0.0",
"rimraf": "^2.5.3",
"sinon": "^1.17.3",
"supertest": "^2.0.0",
"supertest-as-promised": "^3.1.0"
},
"nyc": {
"check-coverage": true,
"lines": 65,
"branches": 58,
"functions": 81,
"statements": 65,
"reporter": [
"lcov",
"text"
],
"exclude": [
"**/*.spec.js",
"test/**",
"env/**",
"docs/**",
"dist/**"
],
"require": [
"babel-register",
"babel-polyfill"
],
"sourceMap": false,
"instrument": false
}
}