@bryopsida/crypto
Version:
A crypto library utilizing @bryopsida/key-store to protect data using data encryption keys
64 lines (63 loc) • 1.88 kB
JSON
{
"name": "@bryopsida/crypto",
"version": "0.1.2",
"description": "A crypto library utilizing @bryopsida/key-store to protect data using data encryption keys",
"main": "lib/index.js",
"exports": "./lib/index.js",
"type": "module",
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"files": [
"lib"
],
"scripts": {
"prepack": "npm run build",
"build": "node_modules/typescript/bin/tsc --project ./",
"build:docs": "typedoc src/crypto.ts src/resolve.ts src/using.ts",
"test": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --coverage --testPathPattern='test/.*\\.spec\\.ts'",
"lint": "eslint --ext .ts src/ test/ && prettier --check .",
"lint:fix": "eslint --ext .ts src/ test/ --fix && prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/bryopsida/crypto.git"
},
"keywords": [
"crypto",
"typescript",
"keystore",
"data-encryption-keys",
"node.js",
"minimal-dependencies"
],
"author": "",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/bryopsida/crypto/issues"
},
"homepage": "https://github.com/bryopsida/crypto#readme",
"devDependencies": {
"@bryopsida/key-store": "^0.1.4",
"@jest/globals": "29.7.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.0.0",
"prettier": "2.8.8",
"standard": "^17.0.0",
"ts-jest": "29.x",
"ts-node": "^10.7.0",
"typedoc": "^0.25.0",
"typescript": "^5.0.0"
}
}