-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
76 lines (76 loc) · 1.64 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
{
"name": "pkcs11js",
"version": "2.1.6",
"description": "A Node.js implementation of the PKCS#11 2.40 interface",
"repository": {
"type": "git",
"url": "git://github.com/PeculiarVentures/pkcs11js.git"
},
"keywords": [
"pkcs11",
"rsa",
"ecdsa",
"aes",
"crypto",
"smartcard",
"token",
"nss",
"softhsm2"
],
"engines": {
"node": ">=18.0.0"
},
"main": "index.js",
"types": "index.d.ts",
"files": [
"src/*",
"includes/*",
"binding.gyp",
"index.js",
"index.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf build/ buildjs/ coverage/ .nyc_output/ npm-debug.log npm-debug.log.*",
"prepare": "npm run build",
"test": "mocha",
"configure:xcode": "node-gyp configure -- -f xcode",
"configure": "node-gyp configure",
"build": "node-gyp configure build",
"pub": "npm run build && npm version patch && git push --follow-tags",
"sync": "git ac && git pull --rebase && git push",
"docs": "typedoc",
"coverage": "nyc npm test"
},
"author": "PeculiarVentures",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.1",
"mocha": "^10.7.3",
"nyc": "^17.0.0",
"typedoc": "^0.26.6",
"typescript": "^5.5.4"
},
"bugs": {
"url": "https://github.com/PeculiarVentures/pkcs11js/issues"
},
"mocha": {
"watch-files": "test/**/*.js"
},
"nyc": {
"include": [
"index.js"
],
"reporter": [
"lcov",
"text-summary",
"html"
]
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/PeculiarVentures"
}
}