79 lines
1.9 KiB
JSON
79 lines
1.9 KiB
JSON
{
|
|
"version": "0.3.1",
|
|
"name": "@tabshift/xml-streamer",
|
|
"description": "XML stream parser for parsing large files efficiently with less usage of memory.",
|
|
"author": {
|
|
"name": "Sai Teja",
|
|
"email": "saitejas464@gmail.com"
|
|
},
|
|
"keywords": [
|
|
"xml",
|
|
"xml streaming",
|
|
"xml streamer",
|
|
"streaming",
|
|
"xml parser",
|
|
"xml parsing",
|
|
"xml2js",
|
|
"xmltojs",
|
|
"node-expat",
|
|
"expat"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/drorgl/xml-streamer"
|
|
},
|
|
"dependencies": {
|
|
"lodash": "4.17.11"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^6.1.4",
|
|
"should": "^13.2.3",
|
|
"@types/lodash": "^4.14.133",
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^12.0.4",
|
|
"@types/should": "^13.0.0",
|
|
"ts-node": "^8.2.0",
|
|
"tslint": "^5.17.0",
|
|
"typescript": "^3.5.1",
|
|
"rimraf": "^2.6.3",
|
|
"source-map-support": "^0.5.12",
|
|
"typedoc": "^0.14.2",
|
|
"nyc": "^14.1.1"
|
|
},
|
|
"optionalDependencies": {},
|
|
"main": "dist/parser.js",
|
|
"types": "dist/parser.d.ts",
|
|
"scripts": {
|
|
"performance-test": "node --prof node_modules/mocha/bin/_mocha -r ts-node/register test/**/*.spec.ts",
|
|
"performance-process": "node --prof-process isolate...",
|
|
"test-one": "mocha -r ts-node/register",
|
|
"test": "mocha -r ts-node/register test/**/*.spec.ts",
|
|
"lint": "tslint --project .",
|
|
"dryrun": "tsc -noEmit",
|
|
"build": "tsc",
|
|
"prepublish": "rimraf ./dist && npm run lint && npm run dryrun && npm run test && npm run build",
|
|
"coverage": "rimraf ./.nyc_output && rimraf ./coverage && nyc mocha -r ts-node/register -r source-map-support/register --ui bdd test/**/*.spec.{ts,tsx}\"",
|
|
"doc": "rimraf ./docs && typedoc",
|
|
"publish-now": "npm publish --access public"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Dror Gluska",
|
|
"email": "drorgl@gmail.com"
|
|
}
|
|
],
|
|
"maintainers": [
|
|
{
|
|
"name": "Sai Teja",
|
|
"email": "saitejas464@gmail.com"
|
|
}
|
|
],
|
|
"standard": {
|
|
"globals": [
|
|
"describe",
|
|
"it"
|
|
]
|
|
}
|
|
}
|