-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "node-red-contrib-dahua-device",
"version": "0.0.0-development",
"description": "A Node-RED integration of Dahua network devices (NVR, IP-Cameras)",
"author": "Igor Starovierov <[email protected]>",
"license": "MIT",
"keywords": [
"node-red",
"dahua"
],
"node-red": {
"nodes": {
"dahua-device": "dahua-device/dahua-device.js",
"dahua-device-config": "dahua-device/dahua-device-config.js",
"dahua-device-night": "dahua-device/dahua-device-night.js",
"dahua-device-day": "dahua-device/dahua-device-day.js"
}
},
"scripts": {
"lint": "eslint ./",
"nd": "node-red -u sandbox",
"watch": "npm-watch"
},
"dependencies": {
"moment": "^2.30.1",
"node-dahua-api": "github:nayrnet/node-dahua-api#master"
},
"overrides": {
"net-keepalive": "4.0.1"
},
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-jsdoc": "^44.0.1",
"eslint-plugin-prettier": "^4.2.1",
"npm-watch": "^0.13.0",
"prettier": "^2.8.8",
"semantic-release": "^24.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inwaar/node-red-contrib-dahua-device.git"
},
"watch": {
"nd": "dahua-device/**"
}
}