forked from eclipse/ponte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.29 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": "ponte",
"version": "0.0.14",
"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": "https://bugs.eclipse.org/bugs/buglist.cgi?component=Core&product=Ponte&resolution=---"
},
"author": "Matteo Collina <[email protected]>",
"license": "EPL-1.0 OR BSD-3-Clause",
"devDependencies": {
"tmp": "0.0.26",
"superagent": "~1.2.0",
"sinon": "~1.15.4",
"supertest": "~1.0.1",
"chai": "~3.0.0",
"mocha": "~2.2.4",
"pre-commit": "~1.0.10",
"jshint": "~2.8.0"
},
"dependencies": {
"mosca": "~0.30.0",
"ascoltatori": "~0.21.0",
"commander": "~2.8.1",
"bunyan": "~1.4.0",
"mqtt": "~1.3.1",
"async": "~1.3.0",
"callback-stream": "~1.0.2",
"xtend": "~4.0.0",
"coap": "~0.10.3",
"st": "~0.5.1",
"corsify": "~2.1.0"
}
}