Change package name to @tabshift/xml-streamer

This commit is contained in:
T. R. Bernstein
2025-07-01 22:30:53 +02:00
parent 07fd1db503
commit b1d36437ea
2 changed files with 76 additions and 2213 deletions

2137
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

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