-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 3 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
110
111
112
113
{
"name": "node-red-contrib-dnp",
"version": "0.0.11",
"private": false,
"description": "The DNP/DNP3 toolbox package for Node-RED.",
"repository": {
"type": "git",
"url": "git+https://github.com/BiancoRoyal/node-red-contrib-dnp.git"
},
"dependencies": {
"debug": "~4.3.4",
"dnp3": "~0.0.1",
"dnp3-crc": "~1.0.0",
"underscore": "~1.13.4"
},
"keywords": [
"dnp",
"fieldbus",
"automation",
"biancoroyal"
],
"author": "Klaus Landsdorf <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/BiancoRoyal/node-red-contrib-dnp/issues"
},
"node-red": {
"version": ">=2",
"nodes": {
"DNP-Client": "dnp/dnp-client.js",
"DNP-Server": "dnp/dnp-server.js",
"DNP-Read": "dnp/dnp-read.js",
"DNP-Write": "dnp/dnp-write.js"
}
},
"engines": {
"node": ">=14"
},
"homepage": "https://noderedplus.de/",
"scripts": {
"test": "standard --fix && mocha test/* --reporter dot",
"build": "standard --fix && gulp publish",
"prepublishOnly": "standard --fix && npm run build && npm run rewrite-changelog && npm test && mocha test --recursive --timeout 5000 --reporter dot && istanbul cover _mocha -- --recursive --timeout 5000",
"ci-publish": "ci-publish",
"release": "standard-version -a",
"release:beta": "standard-version --prerelease beta",
"release:alpha": "standard-version --prerelease alpha",
"rewrite-changelog": "gulp changelog",
"postinstall": "node ./supporter.js",
"clean": "gulp clean",
"dev-link": "npm i && npm run build && npm link",
"dev-unlink": "npm unlink node-red-contrib-dnp -g"
},
"files": [
"docs",
"examples",
"dnp",
"supporter.js"
],
"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",
"codacy-coverage": "^3.4.0",
"conventional-changelog-cli": "^2.2.2",
"coveralls": "^3.1.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-conventional-changelog": "^2.0.35",
"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",
"jasmine-node": "^3.0.0",
"js-beautify": "^1.14.4",
"mocha": "^10.0.0",
"nock": "^13.2.9",
"node-red": "^3.0.1",
"node-red-node-test-helper": "^0.3.0",
"nyc": "^15.1.0",
"pump": "^3.0.0",
"should": "^13.2.3",
"sinon": "^14.0.0",
"standard": "^17.0.0",
"standard-version": "^9.5.0",
"supertest": "^6.2.4",
"uglify-js": "^3.16.3",
"uglify-js-harmony": "^2.7.7",
"when": "^3.7.8"
},
"directories": {
"example": "examples",
"test": "test"
},
"standard": {
"ignore": [
"code/",
"node_modules/",
"examples/",
"dnp/",
"docs",
"test",
"extras"
]
},
"main": "index.js"
}