-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.98 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.98 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "node-red-contrib-time-switch",
"version": "1.1.7",
"description": "Routes messages depending on the current time.",
"main": "index.js",
"files": [
"/examples",
"/icons",
"/screenshots",
"/*.js",
"/*.html",
"/LICENSE",
"/README.md"
],
"keywords": [
"node-red",
"router",
"switch",
"time",
"sun events"
],
"scripts": {
"test": "nyc mocha",
"test-report": "nyc --reporter=html --reporter=text --reporter=lcov mocha"
},
"author": "@devRoemer",
"license": "MIT",
"dependencies": {
"moment": "^2.30.1",
"moment-range": "^4.0.2",
"mustache": "^4.2.0",
"suncalc2": "^1.8.1"
},
"node-red": {
"version": ">=3.0.0",
"nodes": {
"time-range-switch": "index.js"
}
},
"engines": {
"node": ">=14.0"
},
"repository": {
"type": "git",
"url": "https://github.com/devRoemer/node-red-contrib-time-switch"
},
"bugs": {
"url": "https://github.com/devRoemer/node-red-contrib-time-switch/issues"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^9.24.0",
"eslint-config-biddster": "^0.6.0",
"eslint-config-prettier": "^10.1.2",
"mocha": "^11.1.0",
"node-red-contrib-mock-node": "^0.5.3",
"nyc": "^17.1.0",
"prettier": "^3.5.3",
"should": "^13.2.3"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"extends": [
"eslint-config-biddster/es6-node",
"prettier"
],
"rules": {
"linebreak-style": 0
}
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"printWidth": 96
}
}