forked from Helmut-Saal/CC100-Node-Red
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 2.74 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@plus4nodered/node-red-contrib-wago-cc100",
"description": "A WAGO CC100 contribution package for Node-RED.",
"version": "0.1.5",
"private": false,
"node-red": {
"version": ">=2",
"nodes": {
"Digital-Outputs": "cc100/DigOut.js",
"Digital-Inputs": "cc100/DigIn.js",
"Analog-Outputs": "cc100/AO.js",
"Analog-Inputs": "cc100/AI.js",
"PT1000": "cc100/PT.js"
}
},
"main": "node",
"files": [
"docs",
"examples",
"cc100"
],
"license": "MIT",
"scripts": {
"changelog": "npm run rewrite-changelog",
"test": "standard --fix && mocha test --recursive --reporter dot --timeout 5000",
"coverage": "standard --fix && gulp build && npm test && istanbul cover _mocha -- --recursive --timeout 5000",
"build": "standard --fix && gulp",
"prepublishOnly": "npm run build && npm run rewrite-changelog && npm test",
"ci-publish": "ci-publish",
"release": "standard-version -a",
"rewrite-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"clean": "gulp clean",
"dev-link": "npm i && npm run build && npm link && cd ~/.node-red && npm link node-red-contrib-wago-cc100",
"dev-unlink": "npm unlink --no-save node-red-contrib-wago-cc100"
},
"author": "P4NR Team <github@plus4nodered.com>",
"contributors": [
{
"name": "Helmut Saal"
},
{
"name": "Jens Sparmann"
},
{
"name": "Kurt Braun"
},
{
"name": "Jesse Cox"
},
{
"name": "Klaus Landsdorf"
}
],
"keywords": [
"node-red",
"wago",
"CC100",
"automation",
"biancoroyal"
],
"homepage": "https://github.com/Iniationware/CC100-Node-Red",
"bugs": {
"url": "https://github.com/Iniationware/CC100-Node-Red/issues/"
},
"engines": {
"node": ">=12"
},
"directories": {
"example": "examples",
"test": "test"
},
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@node-red/nodes": "^3.0.1",
"chai": "^4.3.6",
"conventional-changelog-cli": "^2.2.2",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-htmlmin": "^5.0.1",
"gulp-jsdoc3": "^3.0.0",
"gulp-replace": "^1.1.3",
"gulp-sequence": "^1.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"istanbul": "^0.4.5",
"js-beautify": "^1.14.3",
"mocha": "^9.2.2",
"node-red": "^3.0.1",
"node-red-node-test-helper": "^0.3.0",
"pump": "^3.0.0",
"standard": "^17.0.0",
"standard-version": "^9.3.2",
"uglify-js": "^3.16.2"
},
"standard": {
"ignore": [
"code/",
"node_modules/",
"examples/",
"cc100/",
"docs",
"test",
"extras"
]
}
}