source: node_modules/xml-but-prettier/package.json@ d24f17c

main
Last change on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 873 bytes
Line 
1{
2 "name": "xml-but-prettier",
3 "version": "1.0.1",
4 "title": "XML Beautifier",
5 "description": "Beautifies XML documents by putting each tag and text node on their own line and correctly indents everything",
6 "main": "dist/index.js",
7 "scripts": {
8 "build": "babel src --out-dir dist",
9 "prepublish": "npm run build",
10 "release": "release-it",
11 "test": "jest test"
12 },
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/shockey/xml-but-prettier"
16 },
17 "author": "Kyle Shockey <kyleshockey@gmail.com>",
18 "license": "MIT",
19 "devDependencies": {
20 "babel-cli": "^6.4.5",
21 "babel-jest": "^21.2.0",
22 "babel-preset-es2015": "^6.3.13",
23 "jest": "^21.2.1",
24 "release-it": "^4.1.1",
25 "tape": "^4.2.2"
26 },
27 "dependencies": {
28 "repeat-string": "^1.5.2"
29 },
30 "jest": {
31 "testMatch": [
32 "**/test/*.js"
33 ]
34 }
35}
Note: See TracBrowser for help on using the repository browser.