-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
55 lines (55 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
54
55
{
"name": "ponte",
"version": "0.0.16",
"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",
"standard-lib": "standard lib/*.js --fix",
"standard-test": "standard test/*.js --fix",
"start": "./bin/ponte -v | bunyan"
},
"pre-commit": [
"standard-lib",
"standard-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]>",
"contributors": [
"Jovan Kostovski <[email protected]> (https://chombium.wordpress.com)"
],
"license": "EPL-1.0 OR BSD-3-Clause",
"devDependencies": {
"tmp": "0.0.31",
"superagent": "~3.3.1",
"sinon": "~1.17.7",
"supertest": "~2.0.1",
"chai": "~3.5.0",
"mocha": "~3.2.0",
"mqtt": "~2.2.1",
"pre-commit": "~1.2.2"
},
"dependencies": {
"mosca": "~2.2.0",
"ascoltatori": "~3.2.0",
"commander": "~2.9.0",
"bunyan": "~1.8.5",
"async": "~2.1.4",
"callback-stream": "~1.1.0",
"xtend": "~4.0.1",
"coap": "~0.19.0",
"st": "~1.2.0",
"corsify": "~2.1.0"
}
}