2019-01-25 10:43:13 +00:00
|
|
|
{
|
|
|
|
"name": "@peculiar/webcrypto",
|
2021-11-10 00:31:40 +00:00
|
|
|
"version": "1.2.2",
|
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"
|
|
|
|
],
|
2019-02-19 09:41:43 +00:00
|
|
|
"main": "build/webcrypto.js",
|
2019-12-16 13:27:50 +00:00
|
|
|
"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",
|
2019-12-16 13:27:50 +00:00
|
|
|
"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",
|
2019-12-16 13:27:50 +00:00
|
|
|
"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",
|
|
|
|
"ed448"
|
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",
|
2021-10-26 09:31:37 +00:00
|
|
|
"@types/mocha": "^9.0.0",
|
2021-11-24 09:12:30 +00:00
|
|
|
"@types/node": "^16.11.10",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
|
|
|
"@typescript-eslint/parser": "^5.4.0",
|
2021-10-26 09:31:37 +00:00
|
|
|
"coveralls": "^3.1.1",
|
2021-11-24 09:12:30 +00:00
|
|
|
"eslint": "^8.3.0",
|
|
|
|
"eslint-plugin-import": "^2.25.3",
|
2021-10-26 09:31:37 +00:00
|
|
|
"mocha": "^9.1.3",
|
2020-07-17 10:12:58 +00:00
|
|
|
"nyc": "^15.1.0",
|
2020-03-06 10:11:02 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2021-11-24 09:12:30 +00:00
|
|
|
"rollup": "^2.60.1",
|
|
|
|
"rollup-plugin-typescript2": "^0.31.1",
|
2021-10-26 09:31:37 +00:00
|
|
|
"ts-node": "^10.4.0",
|
2021-11-24 09:12:30 +00:00
|
|
|
"typescript": "^4.5.2"
|
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
|
|
|
}
|