-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.72 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.72 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
68
69
70
71
72
{
"name": "@cto.af/ca",
"version": "2.6.4",
"decription": "Minimal certificate authority suitable only for localhost testing.",
"main": "lib/index.mjs",
"exports": {
".": "./lib/index.mjs",
"./client": "./lib/client.mjs"
},
"files": [
"bin/*",
"lib/*"
],
"type": "module",
"bin": {
"cto-af-ca": "bin/cto-af-ca.js"
},
"keywords": [
"certificate",
"authority",
"localhost",
"X.509",
"PKCS",
"PEM"
],
"author": "Joe Hildebrand <joe-github@cursive.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cto-af/ca.git"
},
"homepage": "https://github.com/cto-af/ca#readme",
"bugs": {
"url": "https://github.com/cto-af/ca/issues"
},
"scripts": {
"clean": "rm -rf coverage docs lib",
"lint": "eslint .",
"pretest": "tsdown --sourcemap",
"test": "c8 node --enable-source-maps --test",
"posttest": "tsdown --silent",
"docs": "typedoc",
"ts": "tsdown",
"build": "npm run test && npm run lint && npm run docs && npm pack --dry-run"
},
"dependencies": {
"@cto.af/log": "~1.3.6",
"@cto.af/utils": "~1.4.2",
"@napi-rs/keyring": "~1.2.0",
"commander": "~14.0.3",
"env-paths": "~4.0.0",
"filenamify": "~7.0.1",
"jsrsasign": "~11.1.1"
},
"devDependencies": {
"@cto.af/eslint-config": "^6.2.5",
"@eslint/markdown": "^7.5.1",
"@types/jsrsasign": "^10.5.15",
"@types/node": "^25.5.0",
"eslint": "^10.1.0",
"eslint-plugin-jsdoc": "^62.8.0",
"superc8": "^12.3.1",
"tsdown": "^0.21.4",
"typedoc": "^0.28.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=20"
}
}