-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 866 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
31
32
33
34
{
"name": "rest_api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha tests/all.suite.js",
"test_unit": "mocha tests/unit.suite.js",
"test_integration": "mocha tests/integration.suite.js",
"lint": "eslint . || true"
},
"repository": {
"type": "git",
"url": "git+ssh://github.com/lmshaffe/rest_api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lmshaffe/rest_api/issues"
},
"homepage": "https://github.com/lmshaffe/rest_api#readme",
"dependencies": {
"async": "^2.6.0",
"axios": "^0.17.1",
"microservice_core": "git+https://github.com/lmshaffe/microservice_core.git"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-things": "^0.2.0",
"mocha": "^4.0.1",
"node-mocks-http": "^1.6.6",
"sinon": "^4.1.2"
}
}