-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "wot-adapter",
"version": "0.1.0",
"description": "Support for W3C compliant native web things",
"main": "out/src/index.js",
"scripts": {
"lint": "eslint src",
"prettier": "prettier -w '*.js' 'src/**/*.ts'",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebThingsIO/wot-adapter.git"
},
"keywords": [
"iot",
"wot",
"web"
],
"author": "WebThingsIO",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/WebThingsIO/wot-adapter/issues"
},
"homepage": "https://github.com/WebThingsIO/wot-adapter#readme",
"dependencies": {
"@node-wot/binding-http": "^0.7.5",
"@node-wot/core": "^0.7.5",
"dnssd": "^0.4.1",
"node-fetch": "^2.6.1"
},
"peerDependencies": {
"gateway-addon": "^1.1.0-alpha.2"
},
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/chai-as-promised": "^7.1.4",
"@types/dnssd": "^0.4.1",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"@types/node-fetch": "^2.5.10",
"@types/sinon": "^9.0.11",
"@types/sqlite3": "^3.1.7",
"@types/ws": "^7.4.1",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"gateway-addon": "^1.1.0-alpha.2",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"sinon": "^9.2.4",
"sinon-chai": "^3.6.0",
"sqlite3": "^5.0.2",
"ts-node": "^9.1.1",
"ts-sinon": "^2.0.1",
"typescript": "^4.2.3"
}
}