chore: Update dependencies
This commit is contained in:
parent
88c2bf23de
commit
85dc108ca6
File diff suppressed because it is too large
Load Diff
31
package.json
31
package.json
|
@ -17,21 +17,13 @@
|
|||
"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",
|
||||
"build": "rollup -c",
|
||||
"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"
|
||||
"lint:fix": "eslint --fix . --ext .ts"
|
||||
},
|
||||
"keywords": [
|
||||
"webcrypto",
|
||||
|
@ -60,30 +52,29 @@
|
|||
"url": "https://github.com/PeculiarVentures/webcrypto/issues"
|
||||
},
|
||||
"homepage": "https://github.com/PeculiarVentures/webcrypto#readme",
|
||||
"banner": "// Copyright (c) 2021, Peculiar Ventures, All rights reserved.",
|
||||
"devDependencies": {
|
||||
"@peculiar/webcrypto-test": "^1.0.7",
|
||||
"@types/mocha": "^9.1.0",
|
||||
"@types/node": "^16.11.10",
|
||||
"@typescript-eslint/eslint-plugin": "^5.12.1",
|
||||
"@typescript-eslint/parser": "^5.12.1",
|
||||
"@types/node": "^17.0.21",
|
||||
"@typescript-eslint/eslint-plugin": "^5.13.0",
|
||||
"@typescript-eslint/parser": "^5.13.0",
|
||||
"coveralls": "^3.1.1",
|
||||
"eslint": "^8.9.0",
|
||||
"eslint": "^8.10.0",
|
||||
"eslint-plugin-import": "^2.25.4",
|
||||
"mocha": "^9.2.1",
|
||||
"nyc": "^15.1.0",
|
||||
"rimraf": "^3.0.2",
|
||||
"rollup": "^2.68.0",
|
||||
"rollup": "^2.69.0",
|
||||
"rollup-plugin-typescript2": "^0.31.2",
|
||||
"ts-node": "^10.5.0",
|
||||
"typescript": "^4.5.5"
|
||||
"ts-node": "^10.6.0",
|
||||
"typescript": "^4.6.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@peculiar/asn1-schema": "^2.0.44",
|
||||
"@peculiar/json-schema": "^1.1.12",
|
||||
"pvtsutils": "^1.2.1",
|
||||
"pvtsutils": "^1.2.2",
|
||||
"tslib": "^2.3.1",
|
||||
"webcrypto-core": "^1.4.0"
|
||||
"webcrypto-core": "^1.6.0"
|
||||
},
|
||||
"nyc": {
|
||||
"extension": [
|
||||
|
|
Reference in New Issue