-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1004 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1004 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
{
"name": "httpservice",
"version": "0.0.2",
"description": "http microservice",
"main": "index.js",
"scripts": {
"test": "mocha --require test/support/env --recursive --timeout 3000",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --timeout 3000 --require test/support/env --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --timeout 3000 --require test/support/env --reporter spec --check-leaks test/"
},
"repository": {
"type": "git",
"url": "https://github.com/lecle/httpservice.git"
},
"keywords": [
"microservice,http"
],
"author": "Daesun",
"license": "MIT",
"bugs": {
"url": "https://github.com/lecle/httpservice/issues"
},
"homepage": "https://github.com/lecle/httpservice",
"dependencies": {
"assert": "^1.2.0",
"formidable": "^1.0.17",
"istanbul": "^0.3.5",
"mocha": "~2.0.1",
"restify": "^2.8.4",
"underscore": "^1.7.0"
}
}