xmldsigjs-hotfix
Version:
XMLDSIGjs provides an implementation of XMLDSIG in Typescript/Javascript based on WebCrypto
108 lines (107 loc) • 2.95 kB
JSON
{
"name": "xmldsigjs-hotfix",
"version": "2.1.2",
"description": "XMLDSIGjs provides an implementation of XMLDSIG in Typescript/Javascript based on WebCrypto ",
"main": "build/index.js",
"module": "build/index.es.js",
"browser": "build/xmldsig.js",
"browserMin": "build/xmldsig.min.js",
"types": "build/types/index.d.ts",
"scripts": {
"prepare": "npm run build",
"test": "npm run lint && mocha",
"clear": "rimraf build/*",
"build": "npm run build:module && npm run build:types",
"build:module": "rollup -c",
"build:types": "tsc -p tsconfig.types.json",
"rebuild": "npm run clear && npm run build",
"lint": "tslint -p .",
"lint:fix": "tslint --fix -p .",
"prepub": "npm run lint && npm run build",
"postpub": "git push && git push --tags origin master",
"pub": "npm version patch && npm publish",
"prepub:next": "npm run lint && npm run build",
"pub:next": "npm version prerelease --preid=next && npm publish --tag next",
"postpub:next": "git push",
"sync": "git ac && git pull --rebase && git push",
"coverage": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeculiarVentures/xmldsigjs.git"
},
"keywords": [
"xml",
"xmldsig",
"webcrypto",
"signature",
"rsa",
"ec"
],
"author": "Peculiar Ventures, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/PeculiarVentures/xmldsigjs/issues"
},
"homepage": "https://github.com/PeculiarVentures/xmldsigjs#readme",
"dependencies": {
"asn1js": "^2.0.26",
"pkijs": "^2.1.90",
"pvtsutils": "^1.0.12",
"pvutils": "^1.0.17",
"tslib": "^2.0.1",
"xml-core": "^1.1.0",
"xpath": "^0.0.27"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@peculiar/webcrypto": "^1.1.3",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/asn1js": "^0.0.2",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.1",
"coveralls": "^3.1.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.28.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.3",
"xmldom": "^0.3.0"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text-summary",
"html"
]
},
"mocha": {
"require": "ts-node/register",
"extension": [
"ts"
],
"file": "test/config.ts",
"spec": [
"test/**/*.ts"
]
}
}