forked from segmentio/xml-parser
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.61 KB
/
package.json
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
{
"name": "xml-parser-xo",
"version": "4.1.3",
"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 <[email protected]>",
"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": ">= 16"
},
"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": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"chai": "^4.3.4",
"eslint": "^6.8.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}