forked from PeculiarVentures/node-webcrypto-p11
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.38 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.38 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "node-webcrypto-p11",
"version": "2.4.3",
"description": "A WebCrypto Polyfill built on PKCS11",
"main": "build/cjs/index.js",
"module": "build/es2015/index.js",
"types": "index.d.ts",
"files": [
"build/**/*.{ts,js}",
"index.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"test": "mocha",
"test:softhsm": "mocha",
"test:nss": "PV_CRYPTO=nss mocha",
"build": "npm run build:cjs && npm run build:es2015",
"build:cjs": "tsc -p tsconfig.json --removeComments --module commonjs --outDir build/cjs",
"build:es2015": "tsc -p tsconfig.json --removeComments --module ES2015 --outDir build/es2015",
"lint": "tslint 'src/**/*.ts'",
"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.1.7",
"@peculiar/asn1-x509": "^2.1.7",
"@peculiar/json-schema": "^1.1.12",
"@peculiar/x509": "^1.6.1",
"graphene-pk11": "^2.3.0",
"pvtsutils": "^1.3.2",
"tslib": "^2.4.0",
"webcrypto-core": "^1.7.5"
},
"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": {
"@peculiar/webcrypto-test": "^1.0.7",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.34",
"coveralls": "^3.1.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typescript": "^4.6.4"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"lcov",
"text-summary",
"html"
]
},
"mocha": {
"require": "ts-node/register",
"extension": [
"ts"
],
"spec": [
"test/**/*.ts"
]
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/PeculiarVentures"
}
}