-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
166 lines (166 loc) · 6.09 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "node-red-contrib-iiot-opcua",
"version": "4.2.0",
"description": "An Industrial IoT OPC UA toolbox contribution package for Node-RED based on node-opcua.",
"repository": {
"type": "git",
"url": "https://github.com/BiancoRoyal/node-red-contrib-iiot-opcua"
},
"dependencies": {
"@xstate/fsm": "~2.0.0",
"cron": "~2.3.0",
"debug": "~4.3.4",
"g": "~2.0.1",
"node-opcua": "~2.81.0",
"rimraf": "~3.0.2",
"underscore": "~1.13.6",
"vm2": "~3.9.15"
},
"keywords": [
"node-red",
"plus4nodered",
"opcua",
"automation",
"biancoroyal"
],
"author": "Klaus Landsdorf <[email protected]> (https://bianco-royal.space/)",
"contributors": [
{
"name": "PLUS for Node-RED <[email protected]> (https://noderedplus.de/)"
},
{
"name": "Iniationware GmbH <[email protected]> (https://iniationware.com/)"
},
{
"name": "DATATRONiQ GmbH <[email protected]> (https://datatroniq.com/)"
},
{
"name": "Node-OPCUA (https://node-opcua.github.io/)"
},
{
"name": "Sterfive (https://www.sterfive.com/)"
}
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/BiancoRoyal/node-red-contrib-iiot-opcua/issues/new?assignees=&labels=bug&template=bugs.yaml"
},
"homepage": "https://noderedplus.de/",
"node-red": {
"version": ">=2",
"nodes": {
"OPCUA-IIoT-Connector": "opcuaIIoT/opcua-iiot-connector.js",
"OPCUA-IIoT-Flex-Connector": "opcuaIIoT/opcua-iiot-flex-connector.js",
"OPCUA-IIoT-Inject": "opcuaIIoT/opcua-iiot-inject.js",
"OPCUA-IIoT-Node": "opcuaIIoT/opcua-iiot-node.js",
"OPCUA-IIoT-Event": "opcuaIIoT/opcua-iiot-event.js",
"OPCUA-IIoT-Listener": "opcuaIIoT/opcua-iiot-listener.js",
"OPCUA-IIoT-Read": "opcuaIIoT/opcua-iiot-read.js",
"OPCUA-IIoT-Write": "opcuaIIoT/opcua-iiot-write.js",
"OPCUA-IIoT-Response": "opcuaIIoT/opcua-iiot-response.js",
"OPCUA-IIoT-Browser": "opcuaIIoT/opcua-iiot-browser.js",
"OPCUA-IIoT-Crawler": "opcuaIIoT/opcua-iiot-crawler.js",
"OPCUA-IIoT-Server": "opcuaIIoT/opcua-iiot-server.js",
"OPCUA-IIoT-Flex-Server": "opcuaIIoT/opcua-iiot-flex-server.js",
"OPCUA-IIoT-Server-ASO": "opcuaIIoT/opcua-iiot-server-aso.js",
"OPCUA-IIoT-Server-Command": "opcuaIIoT/opcua-iiot-server-cmd.js",
"OPCUA-IIoT-Result-Filter": "opcuaIIoT/opcua-iiot-result-filter.js",
"OPCUA-IIoT-Method-Caller": "opcuaIIoT/opcua-iiot-method-caller.js",
"OPCUA-IIoT-Discovery": "opcuaIIoT/opcua-iiot-discovery.js"
}
},
"engines": {
"node": ">=14"
},
"scripts": {
"postinstall": "npm run certificates",
"certificates": "node ./create_certificates.js demo --dev -s -r ./certificates",
"certificates:renew": "rm -rf ./certificates && node ./create_certificates.js demo --dev -s -r ./certificates",
"test:clearCache": "jest --clearCache",
"test": "standard --fix && npx jest",
"test:debug": "standard --fix && gulp clean && npx jest --bail --debug",
"test:verbose": "standard --fix && npm run test -- --verbose",
"test:watch": "standard --fix && npx jest --watch",
"test:e2e": "standard --fix && npx jest --testPathIgnorePatterns='.*/(units|core)/opcua-iiot-.*'",
"test:units": "standard --fix && npx jest --testPathIgnorePatterns='.*/(e2e|core)/opcua-iiot-.*'",
"test:core": "standard --fix && npx jest --testPathIgnorePatterns='.*/(e2e|units)/opcua-iiot-.*'",
"test:ci": "npm run test -- --ci --json --outputFile=scripts/out.json",
"coverage": "gulp clean && rm -rf ./jcoverage && npm run test -- --coverage",
"coverage:verbose": "gulp clean && rm -rf ./jcoverage && npm run coverage -- --verbose",
"coverage:debug": "gulp clean && rm -rf ./jcoverage && npm run coverage -- --bail --debug",
"coverage:ci": "npm run coverage -- --ci --json --outputFile=scripts/out.json",
"coverage:upload": "cat ./jcoverage/lcov.info | codacy-coverage --token $CODACY_PROJECT_TOKEN_IIOT_OPCUA",
"coverage:e2e": "npm run test:e2e -- --coverage",
"coverage:units": "npm run test:units -- --coverage",
"coverage:core": "npm run test:core -- --coverage",
"test:summarize": "node scripts/JestOutputToSummary.js > summary.md",
"summary": "npm run coverage:ci && npm run test:summarize && jest-coverage-badges input \"./jcoverage/coverage-summary.json\" output \"./badges\"",
"build": "standard --fix && gulp publish",
"prepublishOnly": "npm run test && npm run coverage && npm run build",
"release": "standard-version -a",
"inspect": "jsinspect ./src > .jsinspect-results.json",
"rewrite-changelog": "gulp changelog",
"dev-link": "npm i && npm run build && npm link",
"dev-unlink": "npm unlink node-red-contrib-iiot-opcua -g",
"code:check": "standard --fix"
},
"files": [
"docs",
"examples",
"opcuaIIoT",
"create_certificates.js"
],
"devDependencies": {
"@node-red/nodes": "^3.0.2",
"@types/cron": "^2.0.0",
"@types/debug": "^4.1.7",
"@types/jest": "^29.0.2",
"@types/node-red": "^1.2.1",
"@types/semver": "^7.3.12",
"@types/underscore": "^1.11.4",
"chai": "^4.3.6",
"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-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"jest": "^29.0.2",
"jest-coverage-badges": "^1.1.2",
"jsdoc": "^3.6.11",
"nock": "^13.2.9",
"node-red": "^3.0.2",
"node-red-node-test-helper": "^0.3.0",
"standard": "^17.0.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.2",
"typescript": "^4.8.3",
"uglify-js": "^3.17.2",
"when": "^3.7.8"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"code/",
"node_modules/",
"examples/",
"opcuaIIoT/",
"docs",
"src/public/",
"test"
]
},
"main": "index.js"
}