This repository has been archived on 2023-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
webcrypto/package.json

107 lines
2.3 KiB
JSON
Raw Permalink Normal View History

2019-01-25 10:43:13 +00:00
{
"name": "@peculiar/webcrypto",
2023-03-24 12:32:21 +00:00
"version": "1.4.3",
2019-01-25 10:43:13 +00:00
"description": "A WebCrypto Polyfill for NodeJS",
"repository": {
"type": "git",
"url": "https://github.com/PeculiarVentures/webcrypto.git"
},
2020-11-25 10:31:37 +00:00
"files": [
"build/**/*.{ts,js}",
"index.d.ts",
"README.md",
"LICENSE.md"
],
"main": "build/webcrypto.js",
"module": "build/webcrypto.es.js",
2019-01-25 12:49:21 +00:00
"types": "index.d.ts",
2019-01-25 10:43:13 +00:00
"scripts": {
"test": "mocha",
"coverage": "nyc npm test",
2019-01-25 13:16:24 +00:00
"coveralls": "nyc report --reporter=text-lcov | coveralls",
2022-03-02 18:31:02 +00:00
"build": "rollup -c",
"clear": "rimraf build/*",
"rebuild": "npm run clear && npm run build",
2020-03-13 11:06:53 +00:00
"lint": "eslint . --ext .ts",
2022-03-02 18:31:02 +00:00
"lint:fix": "eslint --fix . --ext .ts"
2019-01-25 10:43:13 +00:00
},
"keywords": [
"webcrypto",
"crypto",
"sha",
"rsa",
"ec",
"aes",
"des",
"hmac",
2021-02-04 19:56:25 +00:00
"pbkdf2",
"eddsa",
"x25519",
"ed25519",
"x448",
2022-02-24 20:39:41 +00:00
"ed448",
"shake128",
"shake256"
2019-01-25 10:43:13 +00:00
],
"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": {
2020-11-25 09:51:19 +00:00
"@peculiar/webcrypto-test": "^1.0.7",
2023-03-21 18:48:53 +00:00
"@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",
2023-04-04 10:20:06 +00:00
"prettier": "^2.8.7",
2023-03-21 18:48:53 +00:00
"rimraf": "^4.4.0",
"rollup": "^3.20.0",
2022-11-02 10:23:37 +00:00
"rollup-plugin-typescript2": "^0.34.1",
"ts-node": "^10.9.1",
2023-03-21 18:48:53 +00:00
"typescript": "^5.0.2"
2019-01-25 10:43:13 +00:00
},
"dependencies": {
2023-03-21 18:48:53 +00:00
"@peculiar/asn1-schema": "^2.3.6",
2020-08-10 11:15:33 +00:00
"@peculiar/json-schema": "^1.1.12",
2023-04-04 10:19:16 +00:00
"buffer": "^6.0.3",
2022-05-12 11:27:11 +00:00
"pvtsutils": "^1.3.2",
2023-03-21 18:48:53 +00:00
"tslib": "^2.5.0",
"webcrypto-core": "^1.7.7"
2019-01-25 10:43:13 +00:00
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
2020-11-25 10:18:52 +00:00
"lcov",
2019-01-25 10:43:13 +00:00
"text-summary",
"html"
]
2019-05-26 08:40:13 +00:00
},
"engines": {
2020-03-06 10:11:02 +00:00
"node": ">=10.12.0"
2020-03-13 11:19:52 +00:00
},
"mocha": {
"require": "ts-node/register",
2020-03-15 09:43:47 +00:00
"extension": [
"ts"
],
2020-04-06 12:19:37 +00:00
"spec": "test/**/*.ts"
2019-01-25 10:43:13 +00:00
}
2023-03-21 19:13:32 +00:00
}