-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 982 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 982 Bytes
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
{
"name": "Koa-RESTful-API",
"version": "0.0.1",
"main": "src/server.js",
"dependencies": {
"koa": "^0.18.1",
"koa-morgan": "^0.1.0",
"koa-mount": "^1.3.0",
"koa-router": "^4.2.0",
"lodash": "^3.5.0",
"redis": "^0.12.1",
"rolling-rate-limiter": "^0.1.2",
"thunkify": "^2.1.2"
},
"devDependencies": {
"chai": "^2.1.1",
"jshint": "^2.6.3",
"jshint-stylish": "^1.0.1",
"mocha": "^2.2.1",
"nodemon": "1.3.7",
"npm-watch": "0.0.0",
"should": "^5.2.0",
"superagent": "^1.2.0",
"supertest": "^0.15.0"
},
"engines": {
"node": ">=0.12.0"
},
"watch": {
"test": "../server/**/*.*"
},
"scripts": {
"start": "NODE_ENV=production node --harmony src/server.js",
"dev": "NODE_ENV=development node --harmony src/server.js",
"local": "NODE_ENV=local nodemon --harmony src/server.js",
"test": "NODE_ENV=test mocha --watch --harmony ./test/**/*.spec.js",
"watch": "npm-watch"
}
}