forked from mfahlandt/node-xml-stream-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.04 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "xmlr",
"version": "1.0.12",
"description": "A fast XML parser using streams implemented in Typescript.",
"main": "dist/index.js",
"private": true,
"scripts": {
"prebuild": "yarn run lint",
"build": "webpack",
"postbuild": "yarn test",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"test:src": "mocha --require @babel/register --watch --watch-extensions js,ts src/**/*.spec.js ",
"test:src:inspect": "mocha --require babel-core/register --watch --watch-extensions js,ts --inspect-brk src/**/*.spec.js ",
"lint": "eslint . --ext .ts --ext .js"
},
"keywords": [
"XML",
"XML Parser",
"XML Stream Parser",
"XML Stream",
"Streaming XML",
"Fast XML Parser",
"nodeJS"
],
"author": "Tommy Dronkers",
"contributors": [
{
"name": "Mario Fahlandt"
},
{
"name": "Markus Velten"
},
{
"name": "Jeffrey Drake"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/madebyjeffrey/xmlr"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.10.4",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"@types/mocha": "^7.0.2",
"@types/chai": "^4.2.11",
"ts-node": "^8.10.2"
}
}