-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.8 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
{
"name": "forgiving-xml-parser",
"version": "1.4.2",
"description": "An forgiving XML/HTML parser and serializer for JavaScript.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^5.0.2",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"fse": "^4.0.1",
"lodash": "^4.17.20",
"mocha": "^8.1.1",
"rollup": "^2.23.0",
"rollup-plugin-uglify": "^5.0.2",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
},
"scripts": {
"build": "tsc --emitDeclarationOnly && node build/build.js",
"build:test": "npx tsc --build ./test/tsconfig.json",
"test": "npm run build:test && mocha test/dist/test/spec/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imingyu/forgiving-xml-parser.git"
},
"keywords": [
"forgiving-xml-parser",
"xml-parsing",
"xml-parser",
"html-parsing",
"html-parser",
"xml2json",
"xml2js",
"json2xml",
"js2xml",
"html2json",
"html2js",
"json2html",
"js2html",
"parser",
"serializer",
"html",
"xml"
],
"author": "imingyu <mingyuhisoft@163.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/imingyu/forgiving-xml-parser/issues"
},
"homepage": "https://github.com/imingyu/forgiving-xml-parser#readme"
}