forked from node-opcua/node-opcua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
195 lines (195 loc) · 7.66 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
{
"name": "node-opcua-mono-repo",
"private": true,
"description": "pure nodejs OPCUA SDK",
"homepage": "http://node-opcua.github.io/",
"main": "index.js",
"bin": {},
"directories": {
"test": "test"
},
"scripts": {
"consistency": "npx -y @ster5/check-version-consistency",
"preinstall": "node prevent_npm_install.js",
"postinstall": "pnpm build",
"_x_preinstall": "npm i browserify -g",
"bootstrap": "pnpm recursive install && lerna bootstrap --concurrency 10 --ignore-scripts",
"bootstrap-fast": "pnpm recursive install",
"build1": "lerna --stream --sort --concurrency=1 run build",
"build": "npm run generateWithPNPM && tsc -b packages",
"generateWithPNPM": "pnpm recursive run generate",
"generateWithLerna": "lerna run generate",
"pretest": "lerna run pretest",
"_old_test": "cd source && mocha test --color -R spec --recursive --timeout 200000 --bail",
"test": "cd packages && node --expose-gc --max-old-space-size=1024 run_all_mocha_tests.js",
"test1": "cd packages && node run_all_mocha_tests.js",
"testlerna": "lerna run --concurrency 8 --no-sort --stream test",
"eslint": "eslint packages/**/src/*.js packages/**/source/*.ts packages/**/test_helpers/*",
"eslint-fix": "eslint --fix packages/*/src/**.js packages/*/__tests__/ utils/*.js scripts/*.js",
"generate_doc": "make doc",
"generate_autodoc": "npx autodoc -o _tmp_generated_doc bin/binaryStream.js",
"ncu": "ncu -u -x mkdirp,@types/mkdirp,yargs,env-paths,cli-truncate,long,chalk,case-anything,rimraf --target=latest && lerna exec --concurrency 10 --sort --stream ncu -- -u --timeout 100000 -x mkdirp,@types/mkdirp,yargs,env-paths,cli-truncate,long,chalk,case-anything,rimraf --target=latest --packageFile package.json ",
"ncu_": "npx npm-check --skip-unused -ayu && lerna exec --sort --concurrency 1 --stream -- npx npm-check --skip-unused -ayu",
"prettier-watch": "onchange \"packages/*/(src|test|source)/**/*.(js|ts)\" -v -p -- prettier --write {{changed}}",
"lebab-let": "lerna exec lebab --replace index.js --transform let && lerna exec lebab --replace test --transform let && lerna exec lebab --replace src --transform let",
"licences": " npx license-checker --production --summary",
"alex": "npx alex documentation/*.md",
"cost-of-modules": "npx cost-of-modules",
"typedoc": "npx [email protected] --excludePrivate --excludeProtected --excludeInternal -options typedoc.config.json",
"legal": "npx legally",
"legal2": "npx npm-license-crawler",
"publish:lerna": "pnpm m run clean && npx rimraf packages/node_modules packages/*/dist packages/*/*.tsbuildinfo && pnpm m i && npx lerna publish"
},
"repository": {
"type": "git",
"url": "git://github.com/node-opcua/node-opcua.git"
},
"keywords": [
"OPCUA",
"opcua",
"m2m",
"iot",
"opc ua",
"internet of things"
],
"author": "Etienne Rossignon",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-opcua/node-opcua/issues"
},
"workspaces": [
"packages/*",
"packages_extra/*"
],
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"app-module-path": "^2.2.0",
"benchmark": "^2.1.4",
"bignumber.js": "^9.1.1",
"coveralls": "^3.1.1",
"csv": "^6.3.1",
"enum": "3.0.4",
"ersatz-node-expat": "^0.1.6",
"eslint-cli": "^1.1.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"literate-programming": "^1.1.0",
"litpro": "^2.1.0",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"prettier": "^3.0.0",
"should": "^13.2.3",
"ts-node": "^10.9.1",
"typescript": "5.1.6"
},
"typings": "./packages/node-opcua/node-opcua.d.ts",
"dependencies": {
"@ster5/global-mutex": "^2.0.0",
"@types/async": "^3.2.20",
"@types/bonjour": "^3.5.10",
"@types/lodash": "4.14.195",
"@types/long": "^4.0.2",
"@types/mkdirp": "1.0.2",
"@types/node": "20.4.2",
"@types/rimraf": "^3.0.2",
"@types/sinon": "10.0.15",
"@types/underscore": "^1.11.5",
"@types/wordwrap": "^1.0.1",
"@types/yargs": "17.0.24",
"async": "^3.2.4",
"backoff": "^2.5.0",
"better-assert": "^1.0.2",
"bomstrip": "^0.1.4",
"byline": "^5.0.0",
"chalk": "4.1.2",
"cli-table3": "^0.6.3",
"cli-truncate": "2.1.0",
"csv-parse": "5.4.0",
"date-utils": "^1.2.21",
"deassertify": "^0.2.0",
"delayed": "^2.0.0",
"dequeue": "^1.0.5",
"easy-table": "^1.2.0",
"env-paths": "2.2.1",
"eslint": "8.45.0",
"exit": "^0.1.2",
"fqdn": "^0.0.3",
"hexy": "0.3.4",
"hjson": "^3.2.2",
"humanize": "0.0.9",
"js2xmlparser": "^5.0.0",
"lerna": "7.1.4",
"lockfile": "^1.0.4",
"lodash": "4.17.21",
"long": "^4.0.0",
"memfs": "^4.2.0",
"mkdirp": "1.0.4",
"mocha-clean": "^1.0.0",
"node-opcua-crypto": "3.1.0",
"node-opcua-pki": "4.2.1",
"object.values": "^1.1.6",
"pretty-ms": "^8.0.0",
"progress": "^2.0.3",
"rimraf": "3.0.2",
"semver": "^7.5.4",
"set-prototype-of": "^1.0.0",
"shebang-loader": "^0.0.1",
"sinon": "^15.2.0",
"source-map-support": "^0.5.21",
"sprintf-js": "^1.1.2",
"sterfive-bonjour-service": "1.1.4",
"thenify": "^3.3.1",
"treeify": "^1.1.0",
"tslib": "^2.6.0",
"underscore": "^1.13.6",
"vorpal": "^1.12.0",
"vorpal-repl": "^1.1.8",
"wordwrap": "^1.0.0",
"wrap-text": "^1.0.9",
"xml-writer": "^1.7.0",
"yargs": "15.4.1"
},
"funding": {
"url": "https://github.com/sponsors/erossignon"
},
"pnpm": {
"overrides": {
"ansi-regex@>2.1.1 <5.0.1": ">=5.0.1",
"nth-check@<2.0.1": ">=2.0.1",
"lodash@<4.17.21": ">=4.17.21",
"underscore@>=1.3.2 <1.12.1": ">=1.12.1",
"pug@<3.0.1": ">=3.0.1",
"lodash@<4.17.19": ">=4.17.19",
"lodash@<4.17.12": ">=4.17.12",
"lodash@<4.17.11": ">=4.17.11",
"lodash@<4.17.5": ">=4.17.5",
"json-schema@<0.4.0": ">=0.4.0",
"postcss@<8.2.13": ">=8.2.13",
"shelljs@<0.8.5": ">=0.8.5",
"marked@<4.0.10": ">=4.0.10",
"markdown-it@<12.3.2": ">=12.3.2",
"nanoid@<3.1.31": ">=3.1.31",
"mixme@<0.5.2": ">=0.5.2",
"tar@>=6.0.0 <6.1.9": ">=6.1.9",
"tar@<4.4.18": ">=4.4.18",
"tar@>=6.0.0 <6.1.7": ">=6.1.7",
"tar@<4.4.16": ">=4.4.16",
"path-parse@<1.0.7": ">=1.0.7",
"tar@>=6.0.0 <6.1.1": ">=6.1.1",
"tar@>=4.0.0 <4.4.14": ">=4.4.14",
"tar@>=6.0.0 <6.1.2": ">=6.1.2",
"tar@>=4.0.0 <4.4.15": ">=4.4.15",
"@npmcli/git@<2.0.8": ">=2.0.8",
"normalize-url@>=4.3.0 <4.5.1": ">=4.5.1",
"browserslist@>=4.0.0 <4.16.5": ">=4.16.5",
"hosted-git-info@<2.8.9": ">=2.8.9",
"trim-newlines@<3.0.1": ">=3.0.1",
"trim-off-newlines@<1.0.3": ">=1.0.3"
}
}
}