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

116 lines
2.7 KiB
JSON
Raw Normal View History

2019-01-25 10:43:13 +00:00
{
"name": "@peculiar/webcrypto",
2022-02-24 20:52:20 +00:00
"version": "1.3.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",
"prepare": "npm run build",
"coverage": "nyc npm test",
2019-01-25 13:16:24 +00:00
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"build": "npm run build:module",
"clear": "rimraf build/*",
"rebuild": "npm run clear && npm run build",
"build:module": "rollup -c",
2020-03-13 11:06:53 +00:00
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"prepub": "npm run lint && npm run rebuild",
"pub": "npm version patch && npm publish",
"postpub": "git push && git push --tags origin master",
"prepub:next": "npm run lint && npm run rebuild",
"pub:next": "npm version prerelease --preid=next && npm publish --tag next",
"postpub:next": "git push"
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",
2021-05-10 19:40:42 +00:00
"banner": "// Copyright (c) 2021, Peculiar Ventures, All rights reserved.",
2019-01-25 10:43:13 +00:00
"devDependencies": {
2020-11-25 09:51:19 +00:00
"@peculiar/webcrypto-test": "^1.0.7",
2022-02-24 20:39:41 +00:00
"@types/mocha": "^9.1.0",
2021-11-24 09:12:30 +00:00
"@types/node": "^16.11.10",
2022-02-24 20:39:41 +00:00
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
2021-10-26 09:31:37 +00:00
"coveralls": "^3.1.1",
2022-02-24 20:39:41 +00:00
"eslint": "^8.9.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.2.1",
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-02-24 20:39:41 +00:00
"rollup": "^2.68.0",
"rollup-plugin-typescript2": "^0.31.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
2019-01-25 10:43:13 +00:00
},
"dependencies": {
2021-11-24 09:12:30 +00:00
"@peculiar/asn1-schema": "^2.0.44",
2020-08-10 11:15:33 +00:00
"@peculiar/json-schema": "^1.1.12",
2021-10-26 09:31:37 +00:00
"pvtsutils": "^1.2.1",
"tslib": "^2.3.1",
2021-11-24 09:12:30 +00:00
"webcrypto-core": "^1.4.0"
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
}