-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "create-koa-server",
"version": "6.0.6",
"description": "Koa API/WEB server",
"main": "./server",
"scripts": {
"dev": "NODE_ENV=development ./node_modules/.bin/nodemon --debug ./server | ./node_modules/.bin/bunyan",
"i-test": "NODE_ENV=test node ./node_modules/.bin/_mocha \"./server/**/*.i-spec.js\"",
"prepublish": "npm test && npm run i-test",
"test": "NODE_ENV=test node ./node_modules/.bin/_mocha \"./server/**/*.spec.js\"",
"watch-i-test": "./node_modules/.bin/nodemon --exec 'npm run i-test'",
"watch-test": "./node_modules/.bin/nodemon --exec 'npm test'",
"lint": "esw .eslintrc.js src/ lib/ tests/ -w --fix --ignore-pattern !.eslintrc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markusdaehn/create-koa-server.git"
},
"keywords": [
"Koa",
"API",
"Restful",
"Starter",
"Server"
],
"author": "Markus Daehn",
"license": "ISC",
"bugs": {
"url": "https://github.com/markusdaehn/create-koa-server/issues"
},
"homepage": "https://github.com/markusdaehn/create-koa-server#readme",
"dependencies": {
"bunyan": "^1.8.4",
"co": "^4.6.0",
"deepmerge2": "^1.0.6",
"get-conf": "^1.0.1",
"glob": "^7.1.1",
"koa": "^1.2.4",
"koa-mount": "^1.3.0",
"koa-router": "^5.4.0",
"ramda": "^0.22.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.3.0",
"nodemon": "^1.11.0",
"sinon": "^1.17.6",
"eslint": "^3.19.0",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-watch": "^3.1.0",
"prettier": "^1.2.2",
"prettier-eslint": "^5.1.0"
}
}