74 lines
2.1 KiB
JSON
74 lines
2.1 KiB
JSON
{
|
|
"name": "xml-crypto",
|
|
"version": "6.1.2",
|
|
"private": false,
|
|
"description": "Xml digital signature and encryption library for Node.js",
|
|
"keywords": [
|
|
"xml",
|
|
"digital signature",
|
|
"xml encryption",
|
|
"x.509 certificate"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/node-saml/xml-crypto.git"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Yaron Naveh <yaronn01@gmail.com> (http://webservices20.blogspot.com/)",
|
|
"contributors": [
|
|
"LoneRifle <LoneRifle@users.noreply.github.com>",
|
|
"Chris Barth <chrisjbarth@hotmail.com>"
|
|
],
|
|
"main": "./lib",
|
|
"files": [
|
|
"lib",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "npx tsc",
|
|
"changelog": "gren changelog --override --generate",
|
|
"lint": "eslint \"{src,test}/*.ts\" --cache && npm run prettier-check",
|
|
"lint:fix": "eslint --fix \"{src,test}/*.ts\" && npm run prettier-format",
|
|
"prepare": "tsc",
|
|
"prettier-check": "prettier --config .prettierrc.json --check .",
|
|
"prettier-format": "prettier --config .prettierrc.json --write .",
|
|
"prerelease": "git clean -xfd && npm ci && npm test",
|
|
"release": "release-it",
|
|
"test": "nyc mocha"
|
|
},
|
|
"dependencies": {
|
|
"@xmldom/is-dom-node": "^1.0.1",
|
|
"@xmldom/xmldom": "^0.8.10",
|
|
"xpath": "^0.0.33"
|
|
},
|
|
"devDependencies": {
|
|
"@cjbarth/github-release-notes": "^4.2.0",
|
|
"@istanbuljs/nyc-config-typescript": "^1.0.2",
|
|
"@prettier/plugin-xml": "^3.2.2",
|
|
"@types/chai": "^4.3.11",
|
|
"@types/mocha": "^10.0.6",
|
|
"@types/node": "^16.18.69",
|
|
"@typescript-eslint/eslint-plugin": "^6.18.1",
|
|
"@typescript-eslint/parser": "^6.18.1",
|
|
"chai": "^4.3.10",
|
|
"choma": "^1.2.1",
|
|
"ejs": "^3.1.9",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-deprecation": "^2.0.0",
|
|
"lcov": "^1.16.0",
|
|
"mocha": "^10.2.0",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^3.1.0",
|
|
"prettier-plugin-packagejson": "^2.4.6",
|
|
"release-it": "^16.3.0",
|
|
"source-map-support": "^0.5.21",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.3.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=16"
|
|
}
|
|
}
|