-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "restserver-api",
"version": "0.1.0",
"description": "8devices sensor network REST server API and demo",
"main": "index.js",
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha tests/*.test.js && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/8devices/restserver-api.git"
},
"author": "Giedrius Medzevicius <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/8devices/restserver-api/issues"
},
"homepage": "https://github.com/8devices/restserver-api#readme",
"dependencies": {
"body-parser": "^1.18.2",
"coap": "^0.21.0",
"express": "^4.16.3",
"ip": "^1.1.5",
"node-rest-client": "^3.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"mocha": "^5.0.4",
"nock": "^9.2.3",
"istanbul": "^0.4.5",
"codecov": "^3.0.0",
"jsdoc-to-markdown": "^4.0.1"
},
"directories": {
"test": "tests"
}
}