-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 990 Bytes
/
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
{
"name": "hermes-server",
"version": "0.3.0",
"repository": "JakeElder/hermes",
"author": "Jake Elder <[email protected]>",
"license": "ISC",
"description": "End point aggregation server. Useful for providing a single url for all of your micro service endpoints.",
"dependencies": {
"express": "^4.13.3",
"http-proxy": "^1.11.2",
"lodash": "^3.10.1",
"q": "^1.4.1",
"strip-json-comments": "^1.0.4"
},
"devDependencies": {
"mocha": "^2.3.2",
"mock-fs": "JakeElder/mock-fs#6da31d5f4b4a3a20018d18c640043450539dc4fd",
"nock": "^2.10.0",
"should": "^7.1.0",
"supertest": "^1.1.0"
},
"scripts": {
"test": "NODE_PATH=. ./node_modules/mocha/bin/mocha $(find test -name *-test.js)",
"test:unit": "NODE_PATH=. ./node_modules/mocha/bin/mocha $(find test/unit -name *-test.js)",
"test:acceptance": "NODE_PATH=. ./node_modules/mocha/bin/mocha $(find test/acceptance -name *-test.js)"
},
"engines": {
"node": "4.1.2"
}
}