-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "meshblu-core-manager-whitelist",
"version": "4.3.0",
"description": "Meshblu core manager for whitelists",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "nyc npm test",
"mocha:json": "env NPM_ENV=test mocha --reporter json > coverage/mocha.json",
"test:watch": "mocha -w -R mocha-multi --reporter-options spec=-,mocha-osx-reporter=-"
},
"repository": {
"type": "git",
"url": "git+https://github.com/octoblu/meshblu-core-manager-whitelist.git"
},
"author": "Octoblu, Inc. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/octoblu/meshblu-core-manager-whitelist/issues"
},
"homepage": "https://github.com/octoblu/meshblu-core-manager-whitelist#readme",
"devDependencies": {
"chai": "^3.4.0",
"coffee-script": "^1.10.0",
"meshblu-core-datastore": "^4.6.0",
"mocha": "^2.3.3",
"mocha-multi": "^0.9.1",
"mocha-osx-reporter": "^0.1.2",
"mongojs": "^2.2.2",
"nyc": "^8.3.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"async": "^1.5.0",
"coffee-script": "^1.10.0",
"debug": "^2.2.0",
"lodash": "^3.10.1",
"meshblu-device-transmogrifier": "^2.1.0",
"meshblu-list-checker": "^2.0.0"
},
"nyc": {
"cache": true,
"reporter": [
"text-summary",
"lcov",
"json"
],
"extension": [
".coffee"
]
}
}