forked from node-opcua/node-opcua-pki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.62 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
{
"name": "node-opcua-pki",
"version": "3.0.2",
"description": "PKI management for node-opcua",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {
"test": "test"
},
"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 env-paths,chalk,yargs,update-notifier",
"ncu2": "npx npm-check-updates -u -f 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"
},
"pkg": {
"scripts": "build/**/*.js",
"assets": "./bin/crypto_create_CA_config.example.js"
},
"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": "^1.2.0",
"async": "^3.2.4",
"byline": "^5.0.0",
"chalk": "4.1.2",
"chokidar": "^3.5.3",
"cli-table": "^0.3.11",
"minimist": "^1.2.7",
"node-opcua-crypto": "^2.1.2",
"progress": "^2.0.3",
"rimraf": "^3.0.2",
"thenify": "^3.3.1",
"wget-improved-2": "^3.3.0",
"yargs": "17.5.1",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/async": "^3.2.16",
"@types/byline": "^4.2.33",
"@types/cli-table": "^0.3.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/node-dir": "0.0.34",
"@types/progress": "^2.0.5",
"@types/rimraf": "^3.0.2",
"@types/sinon": "^10.0.13",
"@types/underscore": "^1.11.4",
"@types/yargs": "^17.0.19",
"@types/yauzl": "^2.10.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"mocha": "^10.2.0",
"node-dir": "^0.1.17",
"nyc": "^15.1.0",
"should": "^13.2.3",
"sinon": "^15.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"bin": {
"pki": "./bin/crypto_create_CA.js"
}
}