-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.99 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
{
"name": "node-opcua-scanner",
"version": "1.0.2",
"description": "pure nodejs OPCUA - security scanner",
"bin": {
"ua_scanner": "./bin/ua_scanner.js"
},
"scripts": {
"build": "tsc -b",
"win-compile_x64": "node_modules\\.bin\\pkg -t nodev18-win-x64 .\\dist\\ua_scanner.js",
"linux-compile_x64": "node_modules\\.bin\\pkg -t nodev18-linux-x64 .\\dist\\ua_scanner.js",
"pretest": "npm run certificate",
"certificate": "node bin/create_certificates.js demo --dev -s",
"test": "echo no test",
"clean": "npx rimraf certificates"
},
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/underscore": "^1.11.14",
"@types/winston-syslog": "^2.4.3",
"@types/yargs": "17.0.31",
"bcryptjs": "^2.4.3",
"chalk": "4.1.2",
"easy-table": "^1.2.0",
"env-paths": "2.2.1",
"exit": "^0.1.2",
"graylog2": "^0.2.1",
"node-opcua": "2.119.2",
"node-opcua-address-space": "2.119.2",
"node-opcua-address-space-for-conformance-testing": "2.119.2",
"node-opcua-assert": "2.105.0",
"node-opcua-client-crawler": "2.119.2",
"node-opcua-client-proxy": "2.119.2",
"node-opcua-crypto": "4.5.0",
"node-opcua-pki": "4.7.0",
"node-opcua-server-configuration": "2.119.2",
"sprintf-js": "^1.1.3",
"syslog-client": "^1.1.1",
"treeify": "^1.1.0",
"underscore": "^1.13.6",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0",
"winston-graylog2": "^2.1.2",
"winston-syslog": "^2.7.0",
"yargs": "15.4.1"
},
"author": "Mika Karaila",
"license": "MIT",
"keywords": [
"OPCUA",
"opcua",
"opc ua",
"CTAC",
"security",
"scanner"
],
"files": [
"dist"
],
"devDependencies": {
"@types/winston": "^2.4.4",
"pkg": "5.8.1",
"ts-node": "^10.9.1"
}
}