forked from WebThingsIO/webthing-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 992 Bytes
/
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
{
"name": "webthing",
"version": "0.12.0",
"description": "HTTP Web Thing implementation",
"main": "webthing.js",
"scripts": {
"lint": "eslint .",
"node": "NODE_PATH=. node",
"start": "NODE_PATH=. node example/multiple-things",
"test": "make test",
"simplest": "NODE_PATH=. node example/simplest-thing"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-iot/webthing-node.git"
},
"keywords": [
"mozilla",
"iot",
"web",
"thing",
"webthing"
],
"author": "Mozilla IoT",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla-iot/webthing-node/issues"
},
"homepage": "https://github.com/mozilla-iot/webthing-node#readme",
"dependencies": {
"ajv": "^6.10.2",
"body-parser": "^1.19.0",
"dnssd": "^0.4.1",
"express": "^4.17.1",
"express-ws": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.2.2",
"uuid": "^3.3.3"
}
}