-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "webthing",
"version": "0.15.0",
"description": "HTTP Web Thing implementation",
"main": "lib/webthing.js",
"scripts": {
"lint": "tsc --noEmit && eslint . --ext .ts",
"node": "NODE_PATH=. node",
"start": "NODE_PATH=. node example/multiple-things",
"test": "make test",
"simplest": "NODE_PATH=. node example/simplest-thing",
"prettier": "npx prettier -w 'src/*.ts' 'example/**/*.{js,ts}'",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebThingsIO/webthing-node.git"
},
"keywords": [
"iot",
"web",
"thing",
"webthing"
],
"author": "WebThingsIO",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/WebThingsIO/webthing-node/issues"
},
"homepage": "https://github.com/WebThingsIO/webthing-node#readme",
"types": "lib/index.d.ts",
"dependencies": {
"ajv": "^7.0.4",
"body-parser": "^1.19.0",
"dnssd": "^0.4.1",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"prettier": "^2.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/dnssd": "^0.4.1",
"@types/express": "^4.17.11",
"@types/express-ws": "^3.0.0",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
}
}