forked from alex-spark/iotkit-comm-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "iotkit-comm",
"version": "0.2.0",
"description": "Allows Intel Edison devices to conveniently discover and communicate with each other and the cloud",
"main": "lib/main.js",
"scripts": {
"test": "./node_modules/.bin/mocha -R spec -t 10000 -S; echo Done.",
"test-sanity": "./node_modules/.bin/mocha -R min -t 10000 -S --grep sanity; echo Done.",
"test-list": "./node_modules/.bin/mocha -R doc -t 10000 -S > test-list.html; echo Done.",
"docs": "./node_modules/.bin/jsdoc . -c jsdoc-conf.json README.md; echo Done.",
"coverage": "./node_modules/.bin/istanbul cover --report html node_modules/.bin/_mocha -- -R Spec -t 10000 -S;echo Done.",
"testsuite": "./run_test_suite.bash"
},
"bin": { "iotkit-comm" : "./lib/setup.js" },
"engines": {
"node": ">=0.10.28"
},
"repository": "",
"dependencies": {
"mdns2": ">=2.1.3",
"mqtt": "0.3.13",
"zmq": ">=2.6.0",
"commander": "*",
"read": "*",
"async": "*"
},
"devDependencies": {
"chai": "*",
"istanbul": "*",
"jsdoc": "*",
"mocha": "*"
},
"keywords": [
"distributed",
"discovery",
"networking",
"communication"
],
"author": "Intel Corporation",
"license": "MIT",
"readmeFilename": "README.md",
"directories": {
"lib": "lib",
"doc": "doc",
"example": "example"
}
}