105 lines
2.2 KiB
JSON
105 lines
2.2 KiB
JSON
{
|
|
"name": "@peculiar/webcrypto",
|
|
"version": "1.4.3",
|
|
"description": "A WebCrypto Polyfill for NodeJS",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/PeculiarVentures/webcrypto.git"
|
|
},
|
|
"files": [
|
|
"build/**/*.{ts,js}",
|
|
"index.d.ts",
|
|
"README.md",
|
|
"LICENSE.md"
|
|
],
|
|
"main": "build/webcrypto.js",
|
|
"module": "build/webcrypto.es.js",
|
|
"types": "index.d.ts",
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"coverage": "nyc npm test",
|
|
"coveralls": "nyc report --reporter=text-lcov | coveralls",
|
|
"build": "rollup -c",
|
|
"clear": "rimraf build/*",
|
|
"rebuild": "npm run clear && npm run build",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "eslint --fix . --ext .ts"
|
|
},
|
|
"keywords": [
|
|
"webcrypto",
|
|
"crypto",
|
|
"sha",
|
|
"rsa",
|
|
"ec",
|
|
"aes",
|
|
"des",
|
|
"hmac",
|
|
"pbkdf2",
|
|
"eddsa",
|
|
"x25519",
|
|
"ed25519",
|
|
"x448",
|
|
"ed448",
|
|
"shake128",
|
|
"shake256"
|
|
],
|
|
"author": "PeculiarVentures",
|
|
"contributors": [
|
|
"Miroshin Stepan<microshine@mail.ru>"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/PeculiarVentures/webcrypto/issues"
|
|
},
|
|
"homepage": "https://github.com/PeculiarVentures/webcrypto#readme",
|
|
"devDependencies": {
|
|
"@peculiar/webcrypto-test": "^1.0.7",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/node": "^18.15.5",
|
|
"@typescript-eslint/eslint-plugin": "^5.56.0",
|
|
"@typescript-eslint/parser": "^5.56.0",
|
|
"eslint": "^8.36.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"mocha": "^10.2.0",
|
|
"rimraf": "^4.4.0",
|
|
"rollup": "^3.20.0",
|
|
"rollup-plugin-typescript2": "^0.34.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@peculiar/asn1-schema": "^2.3.6",
|
|
"@peculiar/json-schema": "^1.1.12",
|
|
"pvtsutils": "^1.3.2",
|
|
"tslib": "^2.5.0",
|
|
"webcrypto-core": "^1.7.7"
|
|
},
|
|
"nyc": {
|
|
"extension": [
|
|
".ts",
|
|
".tsx"
|
|
],
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"**/*.d.ts"
|
|
],
|
|
"reporter": [
|
|
"lcov",
|
|
"text-summary",
|
|
"html"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=10.12.0"
|
|
},
|
|
"mocha": {
|
|
"require": "ts-node/register",
|
|
"extension": [
|
|
"ts"
|
|
],
|
|
"spec": "test/**/*.ts"
|
|
}
|
|
}
|