-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "node-red-contrib-light-transition",
"version": "1.9.1",
"description": "Transitions a light's color & brightness based on defined settings.",
"main": "light-transition.js",
"scripts": {
"test": "mocha \"test/*_spec.js\"",
"testRandom": "mocha \"test/random_*_tests_spec.js\""
},
"keywords": [
"node-red",
"light",
"transition",
"dimmer",
"sunrise",
"wakeup"
],
"node-red": {
"version": ">=3.0.0",
"nodes": {
"light-transition": "light-transition.js"
}
},
"dependencies": {
"loop": "2.1.2"
},
"devDependencies": {
"node-red": "^3.0.0",
"mocha": "^10.2.0",
"node-red-node-test-helper": "^0.3.0",
"prettier": "2.5.1"
},
"author": {
"name": "Luke Moch",
"url": "https://www.github.com/mochman/"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://www.github.com/mochman/node-red-contrib-light-transition.git"
},
"bugs": "https://www.github.com/mochman/node-red-contrib-light-transition/issues",
"homepage": "https://www.github.com/mochman/node-red-contrib-light-transition",
"engines": {
"node": ">=14",
"npm": ">=6.14.4"
}
}