forked from NaturalIntelligence/fast-xml-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.28 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "fast-xml-parser",
"version": "3.19.0",
"description": "Validate XML or Parse XML to JS/JSON very fast without C/C++ based libraries",
"main": "./src/parser.js",
"scripts": {
"test": "jasmine spec/*spec.js",
"unit": "jasmine",
"perf": "node ./benchmark/perfTest3.js",
"lint": "eslint src/*.js spec/*.js",
"bundle": "webpack && webpack --config webpack-prod.config.js",
"coverage": "istanbul cover -x \"cli.js\" -x \"spec/*spec.js\" jasmine spec/*spec.js;",
"coverage:check": "istanbul check-coverage --branch 90 --statement 90",
"prettier": "prettier --write src/**/*.js",
"publish-please": "publish-please",
"prepublishOnly": "publish-please guard"
},
"bin": {
"xml2js": "./cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/NaturalIntelligence/fast-xml-parser"
},
"keywords": [
"fast",
"xml",
"json",
"parser",
"xml2js",
"x2js",
"xml2json",
"js",
"traversable",
"cli",
"command",
"validator",
"validate",
"transformer",
"checker",
"assert",
"big",
"js2xml",
"json2xml",
"nimn",
"xml2nimn",
"locale",
"html"
],
"author": "Amit Gupta (https://amitkumargupta.work/)",
"contributors": [
{
"name": "Alfonso Muñoz-Pomer Fuentes",
"email": "[email protected]",
"url": "https://github.com/alfonsomunozpomer"
},
{
"name": "Steve Reichenbach",
"url": "https://github.com/EyesOnlyNet"
},
{
"name": "Vohmyanin Sergey Vasilevich",
"url": "http://delagen.livejournal.com"
},
{
"name": "Andrew Udvare",
"url": "https://github.com/Tatsh"
}
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/register": "^7.13.8",
"babel-loader": "^8.2.2",
"eslint": "^5.16.0",
"he": "^1.2.0",
"http-server": "^0.12.3",
"istanbul": "^0.4.5",
"jasmine": "^3.6.4",
"nimnjs": "^1.3.2",
"prettier": "^1.19.1",
"publish-please": "^5.5.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"typings": "src/parser.d.ts",
"funding": {
"type": "paypal",
"url": "https://paypal.me/naturalintelligence"
}
}