-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
78 lines (78 loc) · 2.34 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
{
"name": "node-opcua-pki",
"version": "4.16.0",
"description": "PKI management for node-opcua",
"type": "commonjs",
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"scripts": {
"build": "npx tsc -b -f",
"clean": "npx rimraf node_modules .nyc_output tmp private_key.pem certificates",
"test": "mocha -r ./node_modules/source-map-support/register -t 700000 test/**/*.ts",
"cover": "npx nyc -x bin -x tmp -x lib/misc/install* mocha",
"cost-of-modules": "npx cost-of-modules --no-install",
"release-it": "npx release-it",
"ncu": "npx npm-check-updates -u -x rimraf,env-paths,chalk,yargs,update-notifier",
"ncu2": "npx npm-check-updates -u -f rimraf,env-paths,chalk,yargs,update-notifier -t minor",
"pkg": "npx pkg -o pkg/pki bin/crypto_create_CA.js",
"tslint": "npx tslint -c tslint.json lib/**/*.ts",
"postinstall2": "opencollective-postinstall",
"postinstall3": "github-sponsors",
"makelinks": "npx tsx ../make-links/makelinks.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/node-opcua/node-opcua-pki.git"
},
"bugs": {
"url": "https://github.com/node-opcua/node-opcua-pki/issues"
},
"keywords": [
"PKI",
"node-opcua"
],
"collective": {
"url": "https://opencollective.com/node-opcua"
},
"author": "Etienne Rossignon",
"license": "MIT",
"dependencies": {
"@ster5/global-mutex": "^2.0.0",
"async": "^3.2.6",
"byline": "^5.0.0",
"chalk": "4.1.2",
"chokidar": "4.0.1",
"cli-table": "^0.3.11",
"node-opcua-crypto": "4.12.0",
"progress": "^2.0.3",
"rimraf": "4.4.1",
"thenify": "^3.3.1",
"wget-improved-2": "^3.3.0",
"yargs": "17.7.2",
"yauzl": "^3.1.3"
},
"devDependencies": {
"@types/async": "^3.2.24",
"@types/byline": "^4.2.36",
"@types/cli-table": "^0.3.4",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.5",
"@types/node-dir": "0.0.37",
"@types/progress": "^2.0.7",
"@types/rimraf": "^4.0.5",
"@types/sinon": "^17.0.3",
"@types/yargs": "^17.0.33",
"@types/yauzl": "^2.10.3",
"eslint": "^9.12.0",
"mocha": "^10.7.3",
"node-dir": "^0.1.17",
"should": "^13.2.3",
"sinon": "^19.0.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"bin": {
"pki": "./bin/crypto_create_CA.js"
}
}