forked from svenheden/xml-beautifier
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 873 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 873 Bytes
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
{
"name": "xml-but-prettier",
"version": "1.0.1",
"title": "XML Beautifier",
"description": "Beautifies XML documents by putting each tag and text node on their own line and correctly indents everything",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"prepublish": "npm run build",
"release": "release-it",
"test": "jest test"
},
"repository": {
"type": "git",
"url": "https://github.com/shockey/xml-but-prettier"
},
"author": "Kyle Shockey <kyleshockey@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-jest": "^21.2.0",
"babel-preset-es2015": "^6.3.13",
"jest": "^21.2.1",
"release-it": "^4.1.1",
"tape": "^4.2.2"
},
"dependencies": {
"repeat-string": "^1.5.2"
},
"jest": {
"testMatch": [
"**/test/*.js"
]
}
}