-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.22 KB
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
{
"name": "hengha",
"version": "0.2.0",
"description": "A simple API gateway based node.js",
"main": "index.js",
"scripts": {
"test": "mocha --reporter tap ./test/",
"test-watch": "mocha --watch --reporter tap --check-leaks ./test/",
"test-travis": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hashmaparraylist/HengHa.git"
},
"keywords": [
"api gateway",
"node.js"
],
"author": "Sebastian Qu",
"license": "ISC",
"bugs": {
"url": "https://github.com/hashmaparraylist/HengHa/issues"
},
"homepage": "https://github.com/hashmaparraylist/HengHa#readme",
"dependencies": {
"async": "^2.0.1",
"commander": "^2.9.0",
"http-proxy": "^1.14.0",
"kcors": "^1.2.1",
"koa": "^1.2.1",
"koa-basic-auth": "^1.1.2",
"koa-bodyparser": "^2.2.0",
"koa-router": "^5.4.0",
"lodash": "^4.15.0",
"uuid": "^2.0.2",
"winston": "^2.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"rewire": "^2.5.2",
"should": "^11.1.0",
"sinon": "^1.17.5",
"superagent": "^2.2.0"
},
"engines": {
"node": ">= 6.0.0"
}
}