-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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": "things-js",
"version": "2.0.0",
"description": "Framework for building distribute IoT applications",
"main": "index.js",
"scripts": {
"test": "mocha test/run-all.js --exit",
"test-script": "node test/scripts/run-script.js",
"docs": "gitbook build && cp -TR _book/ docs/",
"reset-db": "node bin/scripts/resetMongoDB.js",
"compile": "require-self",
"prepare": "npm run compile"
},
"bin": {
"things-js": "bin/things-js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DependableSystemsLab/ThingsJS.git"
},
"keywords": [
"IoT",
"migration",
"distributed",
"system"
],
"author": "University of British Columbia",
"license": "MIT",
"bugs": {
"url": "https://github.com/DependableSystemsLab/ThingsJS/issues"
},
"homepage": "https://github.com/DependableSystemsLab/ThingsJS#readme",
"dependencies": {
"escodegen": "^1.9.0",
"esprima": "^4.0.0",
"express": "^4.16.4",
"helmet": "^3.13.0",
"jimp": "^0.6.0",
"js-beautify": "^1.8.7",
"js-yaml": "^3.12.0",
"jsonschema": "^1.2.0",
"mongodb": "^2.2.33",
"mongoose": "^5.8.9",
"mosca": "^2.8.1",
"mqtt": "^2.14.0",
"onoff": "^3.2.2",
"pidusage": "^2.0.17",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"uuid": "^3.3.2",
"ws": "^5.1.1"
},
"devDependencies": {
"chai": "^4.1.2",
"gitbook-plugin-jsdoc": "0.0.6",
"gulp": "^3.9.1",
"gulp-mocha": "^6.0.0",
"jsdoc": "^3.5.5",
"mocha": "^5.1.1",
"require-self": "^0.2.1",
"sinon": "^6.3.5"
}
}