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

83 lines
1.9 KiB
JSON
Raw Normal View History

2019-01-25 10:43:13 +00:00
{
"name": "@peculiar/webcrypto",
2019-10-12 07:37:17 +00:00
"version": "1.0.21",
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",
2019-01-25 12:49:21 +00:00
"types": "index.d.ts",
2019-01-25 10:43:13 +00:00
"scripts": {
"test": "mocha",
"build": "rollup -c",
"prepare": "npm run build",
"coverage": "nyc npm test",
2019-01-25 13:16:24 +00:00
"coveralls": "nyc report --reporter=text-lcov | coveralls",
2019-03-02 21:21:34 +00:00
"lint": "tslint '{src,test}/**/*.ts'",
2019-03-07 00:15:30 +00:00
"lint:fix": "tslint --fix '{src,test}/**/*.ts'",
2019-01-25 13:16:24 +00:00
"prepub": "npm run lint && npm run test && npm run build",
2019-01-25 14:31:41 +00:00
"pub": "npm version patch && npm publish --access=public && 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",
"banner": "// Copyright (c) 2019, Peculiar Ventures, All rights reserved.",
"devDependencies": {
2019-08-20 08:49:24 +00:00
"@types/mocha": "^5.2.7",
2019-10-12 07:33:10 +00:00
"@types/node": "^12.7.12",
"coveralls": "^3.0.7",
"mocha": "^6.2.1",
2019-08-20 08:49:24 +00:00
"nyc": "^14.1.1",
2019-10-12 07:33:10 +00:00
"rollup": "^1.23.1",
2019-05-03 14:03:29 +00:00
"rollup-plugin-typescript": "^1.0.1",
2019-10-12 07:33:10 +00:00
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
2019-01-25 10:43:13 +00:00
},
"dependencies": {
2019-05-03 14:03:29 +00:00
"@peculiar/asn1-schema": "^1.0.3",
2019-02-14 11:01:12 +00:00
"@peculiar/json-schema": "^1.1.5",
2019-08-20 08:49:24 +00:00
"asn1js": "^2.0.26",
2019-09-04 05:48:26 +00:00
"pvtsutils": "^1.0.6",
2019-08-20 08:49:24 +00:00
"tslib": "^1.10.0",
2019-09-04 06:24:37 +00:00
"webcrypto-core": "^1.0.14"
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": {
"node": ">=10.0.0"
2019-01-25 10:43:13 +00:00
}
}