This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
forked from node-opcua/opcua-commander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.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
{
"name": "opcua-commander",
"version": "0.37.0",
"description": "OPCUA CLI client",
"main": "bin/bundle.js",
"keywords": [
"opcua",
"iot",
"iiot",
"cli",
"curses",
"blessed"
],
"scripts": {
"build": "tsc -b && npm run bundle",
"bundle": "npx -y esbuild --bundle --outfile=bin/bundle.js --external:blessed --external:chalk --external:wrap-ansi --minify-syntax --sourcemap --platform=node lib/index.ts",
"release": "npm run build && npm run bundle && npx release-it",
"test": "echo \"Error: no test specified\" && exit 1",
"ncu": "npx npm-check-updates -u -x chalk,yargs,env-paths,update-notifier,camel-case,cli-truncate",
"start": "node bin/opcua-commander",
"demo:secure": "node bin/opcua-commander -e opc.tcp://opcuademo.sterfive.com:26543 -s=SignAndEncrypt -P=Aes128_Sha256_RsaOaep -u=user1 -p=password1",
"demo:secure2": "node bin/opcua-commander -e opc.tcp://opcuademo.sterfive.com:26543 -s=SignAndEncrypt -P=Basic256Sha256 -u=user1 -p=password1",
"demo": "node bin/opcua-commander -e opc.tcp://opcuademo.sterfive.com:26543 -s=None -u=user1 -p=password1",
"snap": "bash ./buildsnap.sh"
},
"author": "Etienne Rossignon",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/node-opcua/opcua-commander.git"
},
"bin": {
"opcua-commander": "bin/opcua-commander"
},
"engines": {
"node": ">= 8.0"
},
"bugs": {
"url": "https://github.com/node-opcua/opcua-commander/issues"
},
"dependencies": {
"node-opcua-certificate-manager": "^2.117.0",
"node-opcua-client": "^2.117.0",
"node-opcua-pki": "^4.7.0",
"blessed": "^0.1.81",
"cli-truncate": "2.1.0",
"check-node-version": "4.2.1",
"chalk": "4.1.2",
"wordwrap": "^1.0.0",
"yargs": "17.5.1"
},
"devDependencies": {
"@types/blessed": "^0.1.25",
"@types/wordwrap": "^1.0.3",
"typescript": "^5.2.2",
"es-abstract": "^1.22.3",
"source-map-support": "^0.5.21"
}
}