CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json72 linesDownload Raw Back to saxes
1{2  "name": "saxes",3  "description": "An evented streaming XML parser in JavaScript",4  "author": "Louis-Dominique Dubeau <ldd@lddubeau.com>",5  "version": "6.0.0",6  "main": "saxes.js",7  "types": "saxes.d.ts",8  "license": "ISC",9  "engines": {10    "node": ">=v12.22.7"11  },12  "scripts": {13    "tsc": "tsc",14    "copy": "cp -p README.md build/dist && sed -e'/\"private\": true/d' package.json > build/dist/package.json",15    "build": "npm run tsc && npm run copy",16    "test": "npm run build && mocha --delay",17    "lint": "eslint --ignore-path .gitignore '**/*.ts' '**/*.js'",18    "lint-fix": "npm run lint -- --fix",19    "posttest": "npm run lint",20    "typedoc": "typedoc --tsconfig tsconfig.json --name saxes --out build/docs/ --listInvalidSymbolLinks --excludePrivate --excludeNotExported",21    "build-docs": "npm run typedoc",22    "gh-pages": "npm run build-docs && mkdir -p build && (cd build; rm -rf gh-pages; git clone .. --branch gh-pages gh-pages) && mkdir -p build/gh-pages/latest && find build/gh-pages/latest -type f -delete && cp -rp build/docs/* build/gh-pages/latest && find build/gh-pages -type d -empty -delete",23    "self:publish": "cd build/dist && npm_config_tag=`simple-dist-tag` npm publish",24    "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",25    "postversion": "npm run test && npm run self:publish",26    "postpublish": "git push origin --follow-tags"27  },28  "repository": "https://github.com/lddubeau/saxes.git",29  "devDependencies": {30    "@commitlint/cli": "^14.1.0",31    "@commitlint/config-angular": "^14.1.0",32    "@types/chai": "^4.2.22",33    "@types/mocha": "^9.0.0",34    "@types/node": "^16.11.6",35    "@typescript-eslint/eslint-plugin": "^5.3.0",36    "@typescript-eslint/eslint-plugin-tslint": "^5.3.0",37    "@typescript-eslint/parser": "^5.3.0",38    "@xml-conformance-suite/js": "^3.0.0",39    "@xml-conformance-suite/mocha": "^3.0.0",40    "@xml-conformance-suite/test-data": "^3.0.0",41    "chai": "^4.3.4",42    "conventional-changelog-cli": "^2.1.1",43    "eslint": "^8.2.0",44    "eslint-config-lddubeau-base": "^6.1.0",45    "eslint-config-lddubeau-ts": "^2.0.2",46    "eslint-import-resolver-typescript": "^2.5.0",47    "eslint-plugin-import": "^2.25.2",48    "eslint-plugin-jsx-a11y": "^6.4.1",49    "eslint-plugin-prefer-arrow": "^1.2.3",50    "eslint-plugin-react": "^7.26.1",51    "eslint-plugin-simple-import-sort": "^7.0.0",52    "husky": "^7.0.4",53    "mocha": "^9.1.3",54    "renovate-config-lddubeau": "^1.0.0",55    "simple-dist-tag": "^1.0.2",56    "ts-node": "^10.4.0",57    "tsd": "^0.18.0",58    "tslint": "^6.1.3",59    "tslint-microsoft-contrib": "^6.2.0",60    "typedoc": "^0.22.8",61    "typescript": "^4.4.4"62  },63  "dependencies": {64    "xmlchars": "^2.2.0"65  },66  "husky": {67    "hooks": {68      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"69    }70  }71}72 
basant307/AI_Governance_Project · CoolFace