forked from WebThingsIO/gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.1 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "things-gateway",
"version": "0.3.0",
"description": "Web of Things gateway",
"main": "app.js",
"scripts": {
"test": "npm run lint && npm run mocha",
"lint": "eslint .",
"mocha": "./src/test/run-tests.sh",
"jest": "./src/test/run-tests.sh",
"yarn-check": "./src/test/yarn-test.sh",
"cov": "jest --coverage",
"start": "webpack && node build/gateway.js",
"debug-ide": "webpack && node --inspect=5858 build/gateway.js",
"debug": "webpack && node --inspect build/gateway.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-iot/gateway.git"
},
"author": "Mozilla IoT",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla-iot/gateway/issues"
},
"homepage": "https://iot.mozilla.org",
"dependencies": {
"asn1.js": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.1",
"compression": "^1.7.1",
"config": "^1.26.1",
"event-to-promise": "^0.8.0",
"express": "^4.15.2",
"express-fileupload": "^0.3.0",
"express-promise-router": "^2.0.0",
"express-ws": "^3.0.0",
"greenlock": "^2.1.15",
"jsonwebtoken": "^8.1.0",
"le-challenge-dns": "https://github.com/mozilla-iot/le-challenge-dns",
"mustache-express": "^1.2.5",
"nanomsg": "^3.3.0",
"nocache": "^2.0.0",
"node-fetch": "^1.7.1",
"node-getopt": "^0.2.3",
"onoff": "^1.1.2",
"openzwave-shared": "^1.3.2",
"promisepipe": "^2.1.1",
"rimraf": "^2.6.2",
"serialport": "^6.0.4",
"speaktome-api": "^0.1.7",
"sqlite3": "^3.1.13",
"string-format": "^0.5.0",
"string.prototype.padend": "^3.0.0",
"string.prototype.padstart": "^3.0.0",
"tar": "^4.0.2",
"uuid": "^3.1.0",
"ws": "^3.3.1",
"xbee-api": "^0.5.2",
"zcl-id": "^0.3.2",
"zcl-packet": "^0.2.2"
},
"devDependencies": {
"@types/asn1js": "^0.0.1",
"@types/express": "^4.0.39",
"@types/node": "^8.0.7",
"awesome-typescript-loader": "^3.2.1",
"babel-eslint": "^8.0.1",
"chai": "^4.0.1",
"chai-http": "^3.0.0",
"codecov": "^3.0.0",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^4.7.0",
"eslint-plugin-html": "^4.0.0",
"jest": "^21.2.1",
"nock": "^9.0.18",
"node-rest-client": "^3.1.0",
"nyc": "^11.0.2",
"simple-oauth2": "^1.4.0",
"source-map-support": "^0.5.0",
"ts-jest": "^21.1.4",
"typescript": "^2.4.1",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"testMatch": [
"**/test/**/*-test.(ts|tsx|js)"
],
"mapCoverage": true,
"transform": {
"^.+\\.tsx?$": "ts-jest/preprocessor"
},
"setupTestFrameworkScriptFile": "<rootDir>/src/test/common.js",
"testEnvironment": "node"
},
"resolutions": {
"le-store-certbot": "https://github.com/mozilla-iot/le-store-certbot/tarball/82b00d5d9d0e6b0b025203d11aedb34ca4803b92",
"pyconf": "https://github.com/mozilla-iot/node-config-python/tarball/254eb3beda4ec883738b322c6d1cdedd2a75c644"
}
}