-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "xml-beautify",
"version": "1.2.3",
"description": "XML pretty formatter that corresponds to the self-closing empty elements.",
"main": "dist/XmlBeautify.js",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --config webpack.config.js",
"release": "webpack --config webpack.config.js --mode production",
"test": "jest -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riversun/xml-beautify.git"
},
"author": "Tom Misawa <riversun.org@gmail.com> (https://github.com/riversun)",
"license": "MIT",
"bugs": {
"url": "https://github.com/riversun/xml-beautify/issues"
},
"homepage": "https://github.com/riversun/xml-beautify#readme",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@xmldom/xmldom": "^0.8.2",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.4",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"directories": {
"test": "test"
},
"keywords": [
"beautify",
"pretty-xml",
"formatter",
"beautifier",
"pretty",
"prettify",
"xml"
]
}