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

95 lines
2.4 KiB
JSON
Raw Normal View History

2019-01-25 10:43:13 +00:00
{
"name": "@peculiar/webcrypto",
2020-03-06 10:39:32 +00:00
"version": "1.0.23",
2019-01-25 10:43:13 +00:00
"description": "A WebCrypto Polyfill for NodeJS",
"repository": {
"type": "git",
"url": "https://github.com/PeculiarVentures/webcrypto.git"
},
"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",
"pbkdf2"
],
"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",
2020-03-13 11:06:53 +00:00
"banner": "// Copyright (c) 2020, Peculiar Ventures, All rights reserved.",
2019-01-25 10:43:13 +00:00
"devDependencies": {
2020-03-13 11:06:53 +00:00
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.30",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"coveralls": "^3.0.9",
2020-03-13 11:06:53 +00:00
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"mocha": "^7.1.0",
2019-08-20 08:49:24 +00:00
"nyc": "^14.1.1",
2020-03-06 10:11:02 +00:00
"rimraf": "^3.0.2",
2020-03-13 11:06:53 +00:00
"rollup": "^2.0.6",
"rollup-plugin-typescript2": "^0.26.0",
2020-03-06 10:11:02 +00:00
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
2019-01-25 10:43:13 +00:00
},
"dependencies": {
2019-05-03 14:03:29 +00:00
"@peculiar/asn1-schema": "^1.0.3",
2020-03-06 10:11:02 +00:00
"@peculiar/json-schema": "^1.1.9",
2019-08-20 08:49:24 +00:00
"asn1js": "^2.0.26",
"pvtsutils": "^1.0.9",
2020-03-06 10:11:02 +00:00
"tslib": "^1.11.1",
"webcrypto-core": "^1.0.17"
2019-01-25 10:43:13 +00:00
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text-summary",
"html"
]
2019-05-26 08:40:13 +00:00
},
"engines": {
2020-03-06 10:11:02 +00:00
"node": ">=10.12.0"
2019-01-25 10:43:13 +00:00
}
}