2019-01-25 10:43:13 +00:00
|
|
|
{
|
|
|
|
"name": "@peculiar/webcrypto",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "A WebCrypto Polyfill for NodeJS",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/PeculiarVentures/webcrypto.git"
|
|
|
|
},
|
|
|
|
"main": "index.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",
|
|
|
|
"coveralls": "nyc report --reporter=text-lcov | coveralls"
|
|
|
|
},
|
|
|
|
"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": {
|
|
|
|
"@types/mocha": "^5.2.5",
|
|
|
|
"@types/node": "^10.12.10",
|
|
|
|
"mocha": "^5.2.0",
|
|
|
|
"rollup-plugin-typescript": "^1.0.0",
|
|
|
|
"ts-node": "^7.0.1",
|
|
|
|
"typescript": "^3.1.6"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@peculiar/asn1-schema": "^1.0.1",
|
2019-01-25 12:49:21 +00:00
|
|
|
"@peculiar/json-schema": "^1.1.4",
|
2019-01-25 10:43:13 +00:00
|
|
|
"asn1js": "^2.0.21",
|
|
|
|
"pvtsutils": "^1.0.3",
|
|
|
|
"tslib": "^1.9.3",
|
2019-01-25 12:49:21 +00:00
|
|
|
"webcrypto-core": "^1.0.1"
|
2019-01-25 10:43:13 +00:00
|
|
|
},
|
|
|
|
"nyc": {
|
|
|
|
"extension": [
|
|
|
|
".ts",
|
|
|
|
".tsx"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"**/*.d.ts"
|
|
|
|
],
|
|
|
|
"reporter": [
|
|
|
|
"text-summary",
|
|
|
|
"html"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|