-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.4 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.4 KB
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
{
"name": "node-opcua-pki-project",
"private": true,
"version": "5.7.0",
"description": "PKI management for node-opcua (monorepo)",
"workspaces": [
"packages/node-opcua-pki"
],
"scripts": {
"build": "tsup",
"clean": "npx rimraf node_modules .nyc_output tmp private_key.pem certificates",
"test": "mocha -r ./node_modules/source-map-support/register -r tsconfig-paths/register -t 700000 test/**/*.ts",
"test:cjs": "node test-cjs/test_cjs.js",
"test:esm": "node test-esm/test_esm.mjs",
"test:all": "npm run test && npm run test:cjs && npm run test:esm",
"cost-of-modules": "npx cost-of-modules --no-install",
"__comment": "lerna version bumps version, generates CHANGELOG.md, commits, tags, and pushes. Publish is done by GitHub Actions.",
"release": "npm run build && npm run test && npx lerna version",
"release:minor": "npm run build && npm run test && npx lerna version minor",
"release:major": "npm run build && npm run test && npx lerna version major",
"ncu": "npx npm-check-updates -u --deep -x chokidar,rimraf,env-paths,chalk,update-notifier,@types/node,typescript",
"ncu2": "npx npm-check-updates -u --deep -f chokidar,rimraf,env-paths,chalk,update-notifier,@types/node,typescript -t minor",
"lint": "biome lint",
"format": "biome format --write",
"makelinks": "npx tsx ../make-links/makelinks.ts",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/node-opcua/node-opcua-pki.git"
},
"bugs": {
"url": "https://github.com/node-opcua/node-opcua-pki/issues"
},
"author": "Etienne Rossignon",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/byline": "^4.2.36",
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.13",
"@types/node-dir": "0.0.37",
"@types/progress": "^2.0.7",
"@types/sinon": "^21.0.1",
"@types/yauzl": "^2.10.3",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"mocha": "^11.7.5",
"node-dir": "^0.1.17",
"should": "^13.2.3",
"sinon": "^22.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,js}": [
"biome format --write",
"biome check --write"
]
}
}