forked from mcollina/ponte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "ponte",
"version": "0.0.7",
"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/*.js",
"jshint-test": "jshint test/*.js",
"start": "./bin/ponte -v | bunyan"
},
"pre-commit": [
"jshint-lib",
"jshint-test",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/mcollina/ponte.git"
},
"bugs": {
"url": "http://github.com/mcollina/ponte/issues"
},
"author": "Matteo Collina <hello@matteocollina.com>",
"license": "BSD",
"devDependencies": {
"sinon-chai": "~2.4.0",
"tmp": "0.0.23",
"superagent": "~0.15.5",
"sinon": "~1.7.3",
"supertest": "~0.8.3",
"chai": "~1.8.1",
"mocha": "~1.17.0",
"pre-commit": "0.0.4",
"jshint": "~2.4.1"
},
"dependencies": {
"mosca": "~0.20.0",
"ascoltatori": "~0.14.0",
"commander": "~2.2.0",
"bunyan": "~0.22.3",
"mqtt": "~0.3.8",
"async": "~0.7.0",
"callback-stream": "~1.0.2",
"xtend": "~3.0.0",
"coap": "~0.6.0"
}
}