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 Normal View History

2019-01-25 10:43:13 +00:00
{
"name": "@peculiar/webcrypto",
2022-05-12 12:00:53 +00:00
"version": "1.4.0",
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",
2022-05-12 11:27:11 +00:00
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
2021-10-26 09:31:37 +00:00
"coveralls": "^3.1.1",
2022-05-12 11:27:11 +00:00
"eslint": "^8.15.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
2020-07-17 10:12:58 +00:00
"nyc": "^15.1.0",
2020-03-06 10:11:02 +00:00
"rimraf": "^3.0.2",
2022-05-12 11:27:11 +00:00
"rollup": "^2.72.1",
2022-02-24 20:39:41 +00:00
"rollup-plugin-typescript2": "^0.31.2",
"ts-node": "^10.7.0",
2022-05-12 11:27:11 +00:00
"typescript": "^4.6.4"
2019-01-25 10:43:13 +00:00
},
"dependencies": {
2022-05-12 11:27:11 +00:00
"@peculiar/asn1-schema": "^2.1.6",
2020-08-10 11:15:33 +00:00
"@peculiar/json-schema": "^1.1.12",
2022-05-12 11:27:11 +00:00
"pvtsutils": "^1.3.2",
"tslib": "^2.4.0",
"webcrypto-core": "^1.7.4"
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
}
2020-03-15 09:43:47 +00:00
}