forked from eclipse/ponte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.52 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
54
55
56
57
58
59
60
61
62
63
{
"name": "ponte",
"version": "0.0.13",
"description": "The Internet of Things Bridge for REST developers",
"main": "lib/ponte.js",
"bin": {
"ponte": "./bin/ponte"
},
"scripts": {
"test": "mocha --recursive --bail --reporter spec test",
"ci": "mocha --recursive --bail --watch test",
"jshint-lib": "jshint lib",
"jshint-test": "jshint test",
"start": "./bin/ponte -v | bunyan"
},
"pre-commit": [
"jshint-lib",
"jshint-test",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/eclipse/ponte.git"
},
"bugs": {
"url": "http://github.com/eclipse/ponte/issues"
},
"author": "Matteo Collina <[email protected]>",
"license": [
{
"type": "Eclipse Distribution License 1.0 (EDL-1.0) (BSD 3-Clause)",
"url": "http://www.eclipse.org/org/documents/edl-v10.html"
},
{
"type": "Eclipse Public License 1.0 (EPL-1.0)",
"url": "http://www.eclipse.org/org/documents/epl-v10.html"
}
],
"devDependencies": {
"tmp": "0.0.24",
"superagent": "~0.18.0",
"sinon": "~1.10.2",
"supertest": "~0.13.0",
"chai": "~1.9.1",
"mocha": "~1.21.0",
"pre-commit": "0.0.9",
"jshint": "~2.5.1",
"mows": "0.0.6"
},
"dependencies": {
"mosca": "~0.26.2",
"ascoltatori": "~0.18.0",
"commander": "~2.3.0",
"bunyan": "~1.0.1",
"mqtt": "~0.3.11",
"async": "~0.9.0",
"callback-stream": "~1.0.2",
"xtend": "~4.0.0",
"coap": "~0.8.0",
"st": "~0.5.1",
"corsify": "~1.0.2"
}
}