102 lines
2.5 KiB
JSON
102 lines
2.5 KiB
JSON
{
|
|
"name": "@peculiar/webcrypto",
|
|
"version": "1.0.27",
|
|
"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",
|
|
"types": "index.d.ts",
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"prepare": "npm run build",
|
|
"coverage": "nyc npm test",
|
|
"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",
|
|
"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"
|
|
},
|
|
"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",
|
|
"banner": "// Copyright (c) 2020, Peculiar Ventures, All rights reserved.",
|
|
"devDependencies": {
|
|
"@peculiar/webcrypto-test": "^1.0.1",
|
|
"@types/mocha": "^7.0.2",
|
|
"@types/node": "^12.12.34",
|
|
"@typescript-eslint/eslint-plugin": "^2.26.0",
|
|
"@typescript-eslint/parser": "^2.26.0",
|
|
"coveralls": "^3.0.11",
|
|
"eslint": "^6.8.0",
|
|
"eslint-plugin-import": "^2.20.2",
|
|
"mocha": "^7.1.1",
|
|
"nyc": "^14.1.1",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^2.3.3",
|
|
"rollup-plugin-typescript2": "^0.26.0",
|
|
"ts-node": "^8.8.2",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"dependencies": {
|
|
"@peculiar/asn1-schema": "^1.0.5",
|
|
"@peculiar/json-schema": "^1.1.10",
|
|
"pvtsutils": "^1.0.10",
|
|
"tslib": "^1.11.1",
|
|
"webcrypto-core": "^1.0.19-next.0"
|
|
},
|
|
"nyc": {
|
|
"extension": [
|
|
".ts",
|
|
".tsx"
|
|
],
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"**/*.d.ts"
|
|
],
|
|
"reporter": [
|
|
"text-summary",
|
|
"html"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=10.12.0"
|
|
},
|
|
"mocha": {
|
|
"require": "ts-node/register",
|
|
"extension": [
|
|
"ts"
|
|
],
|
|
"spec": "test/**/*.ts"
|
|
}
|
|
}
|