-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
41
42
{
"name": "pelion-edge-provisioner",
"version": "2.6.1",
"description": "It provisions the gateway for Izuma Edge solution to successfully and securely communicate with cloud",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha ./test-cases/run-test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PelionIoT/pelion-edge-provisioner.git"
},
"bugs": {
"url": "https://github.com/PelionIoT/pelion-edge-provisioner/issues"
},
"nyc": {
"exclude": [
"**/*test-cases*"
],
"include": [
"api-server",
"utils"
]
},
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/PelionIoT/pelion-edge-provisioner#readme",
"dependencies": {
"body-parser": "^1.18.2",
"colors": "^1.1.2",
"express": "^4.16.2",
"hal": "^1.2.0",
"jsonminify": "^0.4.1",
"mongoose": "^5.8.4",
"request": "^2.81.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"glob": "^7.1.6",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
}
}