-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "node-red-contrib-tahoma",
"version": "3.0.0-beta.5",
"description": "Control a Somfy Tahoma box from Node RED",
"main": "index.js",
"scripts": {
"build": "mkdir -p dist/nodes/ && cp -a src/nodes/*.html dist/nodes/ && tsc",
"execute": "npm run build && node-red",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikkow/node-red-contrib-tahoma.git"
},
"keywords": [
"node",
"red",
"node-red",
"tahoma",
"somfy",
"home",
"automation"
],
"author": "Nicolas Nunge <me@nikkow.eu>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nikkow/node-red-contrib-tahoma/issues"
},
"homepage": "https://github.com/nikkow/node-red-contrib-tahoma#readme",
"node-red": {
"nodes": {
"tahoma": "dist/nodes/tahoma.js",
"tahoma-config": "dist/nodes/tahoma-config.js",
"tahoma-read": "dist/nodes/tahoma-read.js"
}
},
"dependencies": {
"axios": "0.26.1",
"bonjour": "3.5.0"
},
"devDependencies": {
"@types/node": "17.0.24",
"@types/node-red": "1.2.1",
"@typescript-eslint/eslint-plugin": "5.20.0",
"@typescript-eslint/parser": "5.20.0",
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.6.2",
"tslint": "6.1.3",
"typescript": "4.6.3"
}
}