@transmission-dynamics/pkcs11js
Version:
A Node.js implementation of the PKCS#11 2.40 interface
74 lines (73 loc) • 1.67 kB
JSON
{
"name": "@transmission-dynamics/pkcs11js",
"version": "2.1.6",
"description": "A Node.js implementation of the PKCS#11 2.40 interface",
"repository": {
"type": "git",
"url": "git://github.com/Transmission-Dynamics/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",
"create-prebuilds": "./scripts/create-prebuilds.sh"
},
"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/Transmission-Dynamics/pkcs11js/issues"
},
"mocha": {
"watch-files": "test/**/*.js"
},
"nyc": {
"include": [
"index.js"
],
"reporter": [
"lcov",
"text-summary",
"html"
]
}
}