forked from segmentio/xml-parser
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.66 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "xml-parser-xo",
"version": "4.1.5",
"repository": "github:chrisbottin/xml-parser",
"bugs": {
"url": "https://github.com/chrisbottin/xml-parser/issues"
},
"homepage": "https://github.com/chrisbottin/xml-parser#readme",
"description": "Parse a XML string into a proprietary syntax tree",
"author": "Chris Bottin <chrisbottin@gmail.com>",
"license": "MIT",
"main": "./dist/cjs/index.js",
"es2015": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "eslint . --ext=js,ts",
"clean": "rm -rf ./dist",
"compile": "npm run clean && npm run lint && npm run compile:commonjs && npm run compile:esnext && npm run compile:types",
"compile:commonjs": "tsc --module commonjs --outDir ./dist/cjs --noEmit false",
"compile:esnext": "tsc --module esnext --outDir ./dist/esm --noEmit false",
"compile:types": "tsc --emitDeclarationOnly --declaration --declarationMap --outDir ./dist/types --noEmit false",
"test": "mocha --require=ts-node/register --extension=js,ts --spec=test",
"prepublishOnly": "echo Please use publish.sh && exit 1"
},
"engines": {
"node": ">= 20"
},
"keywords": [
"xml",
"parse",
"parser",
"convert",
"converter",
"syntax",
"tree"
],
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^7.0.2",
"@types/node": "^14.18.29",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@eslint/js": "^10.0.0",
"chai": "^4.3.4",
"eslint": "^10.0.0",
"globals": "^15.0.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}