{ "name": "@peculiar/webcrypto", "version": "1.1.3", "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" ], "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.7", "@types/mocha": "^8.0.4", "@types/node": "^12.19.7", "@typescript-eslint/eslint-plugin": "^4.8.2", "@typescript-eslint/parser": "^4.8.2", "coveralls": "^3.1.0", "eslint": "^7.14.0", "eslint-plugin-import": "^2.22.1", "mocha": "^8.2.1", "nyc": "^15.1.0", "rimraf": "^3.0.2", "rollup": "^2.33.3", "rollup-plugin-typescript2": "^0.29.0", "ts-node": "^9.0.0", "typescript": "^3.9.7" }, "dependencies": { "@peculiar/asn1-schema": "^2.0.26", "@peculiar/json-schema": "^1.1.12", "pvtsutils": "^1.1.1", "tslib": "^2.0.3", "webcrypto-core": "^1.1.8" }, "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" } }