-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
81 lines (81 loc) · 2.02 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
{
"name": "node-webcrypto-p11",
"version": "2.7.0",
"description": "A WebCrypto Polyfill built on PKCS11",
"main": "build/index.js",
"module": "build/index.es.js",
"types": "build/index.d.ts",
"files": [
"build/**/*.{ts,js}",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "mocha",
"test:softhsm": "mocha",
"test:nss": "PV_CRYPTO=nss mocha",
"build": "rollup -c",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepub": "npm run lint && npm run build",
"pub": "npm version patch && git push --follow-tags",
"coverage": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/PeculiarVentures/node-webcrypto-p11.git"
},
"dependencies": {
"@peculiar/asn1-schema": "^2.3.15",
"@peculiar/asn1-x509": "^2.3.15",
"@peculiar/json-schema": "^1.1.12",
"@peculiar/x509": "^1.12.3",
"graphene-pk11": "^2.3.6",
"pkcs11js": "^2.1.6",
"pvtsutils": "^1.3.6",
"tslib": "^2.8.1",
"webcrypto-core": "^1.8.1"
},
"keywords": [
"crypto",
"graphene",
"webcrypto",
"pkcs11",
"rsa",
"aes",
"ec",
"digest",
"secp256k1",
"nss",
"x25519"
],
"author": "Peculiar Ventures, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/PeculiarVentures/node-webcrypto-p11/issues"
},
"homepage": "https://github.com/PeculiarVentures/node-webcrypto-p11#readme",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@peculiar/webcrypto-test": "^1.0.7",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"mocha": "^11.1.0",
"nyc": "^17.1.0",
"rollup": "^4.31.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/PeculiarVentures"
}
}