forked from mjwwit/node-red-contrib-ikea-tradfri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.19 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
63
64
{
"name": "node-red-contrib-ikea-tradfri",
"version": "0.6.0",
"description": "Node-RED nodes to get updates from and control devices connected to an IKEA TRADFRI gateway",
"main": "dist/index.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig.json",
"postbuild": "cd src && cp **/*.html --parents ../dist",
"lint": "eslint -c .eslintrc.js --ext .ts src test",
"pretest": "npm run lint",
"test": "jest --coverage",
"prepublishOnly": "npm run build",
"dev": "node ./node_modules/node-red/red.js --userDir ./data",
"dev:watch": "nodemon -e ts,html --watch src --exec 'npm run build && npm run dev'"
},
"homepage": "https://github.com/mjwwit/node-red-contrib-ikea-tradfri",
"repository": "github:mjwwit/node-red-contrib-ikea-tradfri",
"author": "Michael de Wit <mjwwit@gmail.com>",
"license": "ISC",
"engines": {
"node": ">=12"
},
"dependencies": {
"core-js": "^3.20.1",
"fp-ts": "^2.11.5",
"io-ts": "^2.2.16",
"node-tradfri-client": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^12.20.39",
"@types/node-red": "^1.2.0",
"@types/node-red-node-test-helper": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.5",
"node-red": "^2.1.4",
"node-red-node-test-helper": "^0.2.7",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"keywords": [
"node-red",
"tradfri",
"ikea"
],
"node-red": {
"nodes": {
"tradfri-config": "dist/tradfri-config-node/tradfri-config.js",
"tradfri-switch-control": "dist/tradfri-switch-control-node/tradfri-switch-control.js",
"tradfri-monitor": "dist/tradfri-monitor-node/tradfri-monitor.js",
"tradfri-state": "dist/tradfri-state-node/tradfri-state.js",
"tradfri-light-control": "dist/tradfri-light-control-node/tradfri-light-control.js",
"tradfri-blind-control": "dist/tradfri-blind-control-node/tradfri-blind-control.js"
}
}
}