forked from alex6o/node-red-contrib-dynamic-dimmer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.49 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
{
"name": "node-red-contrib-dynamic-dimmer",
"version": "0.0.0",
"description": "A dimmer node for Node-RED",
"keywords": [
"node-red",
"dynamic dimmer",
"dimmer",
"switch",
"animation",
"ease",
"iot"
],
"homepage": "https://github.com/alex6o/node-red-contrib-dynamic-dimmer#readme",
"bugs": {
"url": "https://github.com/alex6o/node-red-contrib-dynamic-dimmer/issues"
},
"license": "MIT",
"files": [
"dist/**/*"
],
"main": "dist/dynamic-dimmer.js",
"repository": {
"type": "git",
"url": "https://github.com/alex6o/node-red-contrib-dynamic-dimmer.git"
},
"scripts": {
"build": "tsc && cp ./src/*.html ./dist/",
"dev": "npm run build && docker-compose restart",
"test": "jest"
},
"devDependencies": {
"@marcj/marshal": "^2.1.13",
"@types/d3-ease": "^1.0.9",
"@types/jest": "^25.2.1",
"@types/mathjs": "^6.0.5",
"@types/node": "^13.11.1",
"@types/node-red": "^0.20.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"jest": "^25.3.0",
"node-red": "^1.0.5",
"node-red-node-test-helper": "^0.2.3",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"node-red": {
"nodes": {
"dynamic-dimmer": "dist/dynamic-dimmer.js"
}
},
"dependencies": {
"@marcj/marshal": "^2.1.13",
"d3-ease": "^1.0.6",
"dot-prop": "^5.2.0",
"mathjs": "^7.5.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.5"
}
}