pkcs11js-test
Version:
A Node.js implementation of the PKCS#11 2.3 interface
41 lines (40 loc) • 1.08 kB
JSON
{
"name": "pkcs11js-test",
"version": "1.0.16",
"description": "A Node.js implementation of the PKCS#11 2.3 interface",
"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"
},
"dependencies": {
"nan": "^2.10.0"
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^10.1.3",
"mocha": "^5.2.0"
}
}