-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
128 lines (128 loc) · 3.96 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
{
"name": "node-red-contrib-opcua-server",
"version": "1.1.1",
"description": "Node-RED contribution nodes with next generation OPC UA in a compact and less dependencies package.",
"author": "Bianco Royal <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/BiancoRoyal/node-red-contrib-opcua-server.git"
},
"license": "MIT",
"homepage": "https://noderedplus.de/",
"bugs": {
"url": "https://github.com/BiancoRoyal/node-red-contrib-opcua-server/issues"
},
"main": "index.js",
"files": [
"docs",
"examples",
"opcuaCompact",
"create_certificates.js",
"supporter.js"
],
"dependencies": {
"better-assert": "~1.0.2",
"debug": "~4.3.4",
"node-opcua": "~2.64.1",
"source-map-support": "~0.5.21",
"vm2": "~3.9.10"
},
"scripts": {
"build": "npm run clean:formatter && gulp publish",
"postinstall": "node ./create_certificates.js demo --dev -s -r ./certificates && node ./supporter.js",
"test": "npm run check:formatter && jest --detectOpenHandles --forceExit --logHeapUsage",
"test:clearCache": "jest --clearCache",
"test:coverage": "jest --coverage",
"test:ci": "npm run test -- --ci --silent --json --outputFile=scripts/out.json",
"coverage": "gulp clean && rm -rf ./jcoverage && jest --coverage --detectOpenHandles --forceExit --logHeapUsage --debug",
"coverage:ci": "jest --coverage --detectOpenHandles --forceExit --logHeapUsage --ci --silent --json --outputFile=scripts/out.json",
"coverage:upload": "cat ./jcoverage/lcov.info | codacy-coverage --token $CODACY_PROJECT_TOKEN_OPCUA_SERVER",
"check:formatter": "prettier --check \"src/**/*.js\" && prettier --check \"test/**/*.js\"",
"release": "npm run clean:formatter && standard-version",
"release:alpha": "npm run clean:formatter && npm run release -- --prerelease alpha",
"inspect": "jsinspect ./src > .jsinspect-results.json",
"rewrite-changelog": "gulp changelog",
"clean": "gulp clean",
"clean:install": "./clean.sh",
"clean:formatter": "prettier --write \"src/**/*.js\" && prettier --write \"test/**/*.js\"",
"lint:md": "remark .",
"prepublishOnly": "npm test && npm run coverage && npm run build",
"dev-link": "npm install && npm run build && npm link",
"dev-unlink": "npm unlink node-red-contrib-opcua-server -g"
},
"engines": {
"node": ">=14"
},
"node-red": {
"version": ">=2",
"nodes": {
"Compact-Server": "opcuaCompact/server-node.js"
}
},
"keywords": [
"node-red",
"opcua-server",
"automation",
"iiot",
"biancoroyal"
],
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@node-red/nodes": "^3.0.1",
"@types/cron": "^2.0.0",
"@types/debug": "^4.1.7",
"@types/jest": "^28.1.6",
"@types/node-red": "^1.2.1",
"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": "^28.1.3",
"jest-coverage-badges": "^1.1.2",
"jsdoc": "^3.6.10",
"nock": "^13.2.8",
"node-red": "^3.0.1",
"node-red-node-test-helper": "^0.3.0",
"pump": "^3.0.0",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.6",
"typescript": "^4.7.4",
"uglify-js": "^3.16.2",
"when": "^3.7.8"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"code/",
"node_modules/",
"examples/",
"opcuaCompact/",
"docs",
"src/public/",
"test"
]
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
[
"remark-lint-list-item-indent",
false
]
]
},
"browserslist": "> 0.25%, not dead"
}