This repository has been archived by the owner on Jan 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.73 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
{
"name": "node-red-contrib-insteon",
"version": "0.7.4",
"description": "A library of Node-RED nodes for interacting with the Insteon home automation ecosystem",
"license": "MIT",
"keywords": [
"node-red"
],
"scripts": {
"prepublishOnly": "yarn run build",
"build": "rm -r dist/* && yarn run copyFiles & yarn run build:ts",
"build:ts": "tsc",
"build:debug": "tsc -d --watch",
"copyFiles": "copyfiles -u 1 src/**/*.html dist/",
"debug": "yarn run build && ../testing/node_modules/.bin/node-red -u ../testing/usrDir/",
"watch": "nodemon -w src -e ts,html,js,json --exec yarn run build",
"watch:files": "watch 'yarn run copyFiles' src"
},
"node-red": {
"nodes": {
"insteonModemConfig": "./dist/modem/insteonModemConfig/insteonModemConfig.js",
"insteonPowerLincModem": "./dist/modem/insteonPowerLincModem/insteonPowerLincModem.js",
"insteonDeviceConfig": "./dist/device/insteonDeviceConfig/insteonDeviceConfig.js",
"insteonDeviceSubscribe": "./dist/device/insteonDeviceSubscribe/insteonDeviceSubscribe.js",
"insteonDevicRequest": "./dist/device/insteonDeviceRequest/insteonDeviceRequest.js",
"insteonDeviceCommand": "./dist/device/insteonDeviceCommand/insteonDeviceCommand.js",
"insteonSceneConfig": "./dist/scene/insteonSceneConfig/insteonSceneConfig.js",
"insteonSceneCommand": "./dist/scene/insteonSceneCommand/insteonSceneCommand.js"
}
},
"files": [
"dist/"
],
"devDependencies": {
"@types/node-red": "^0.20.1",
"@types/serialport": "^8.0.0",
"copyfiles": "^2.2.0",
"nodemon": "^2.0.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"watch": "^1.0.2"
},
"dependencies": {
"@types/express": "^4.17.3",
"@types/flat-cache": "^2.0.0",
"flat-cache": "^2.0.1",
"insteon-plm": "^0.6.0"
}
}