forked from PeculiarVentures/pkcs11js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 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
{
"name": "pkcs11js",
"version": "1.0.19",
"description": "A Node.js implementation of the PKCS#11 2.3 interface",
"repository": {
"type": "git",
"url": "git://github.com/PeculiarVentures/pkcs11js.git"
},
"keywords": [
"pkcs11",
"rsa",
"ecdsa",
"aes",
"crypto",
"smartcard",
"token",
"nss",
"softhsm2"
],
"main": "index.js",
"types": "index.d.ts",
"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 && npm publish && git push",
"sync": "git ac && git pull --rebase && git push",
"coverage": "nyc npm test",
"precoveragehtml": "npm run coverage",
"coveragehtml": "nyc report -r html",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"author": "PeculiarVentures",
"license": "MIT",
"dependencies": {
"nan": "^2.14.0"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.18",
"mocha": "^6.2.0"
},
"bugs": {
"url": "https://github.com/PeculiarVentures/pkcs11js/issues"
}
}