-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "node-red-extension",
"display_name": "Node-RED",
"version": "0.2.4",
"description": "Use your webthings in Node-RED for advanced home automation",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node generate-config-interfaces.js && tsc -p .",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bewee/node-red-extension.git"
},
"author": "bewee",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/bewee/node-red-extension/issues"
},
"homepage": "https://github.com/bewee/node-red-extension#readme",
"files": [
"LICENSE",
"manifest.json",
"lib/"
],
"dependencies": {
"dnssd": "^0.4.1",
"node-red": "^2.0.5",
"node-red-contrib-webthingsio": "^0.2.3"
},
"devDependencies": {
"@types/dnssd": "^0.4.2",
"@types/express": "^4.17.13",
"@types/node": "^16.4.8",
"@types/node-red": "^1.1.1",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.32.0",
"gateway-addon": "^1.0.0",
"json-schema-to-typescript": "^10.1.3",
"typescript": "^4.3.5"
}
}