vkbeautify-cli
Version:
cli to prettier xml, json, css and sql based on vkbeautify
109 lines (108 loc) • 2.87 kB
JSON
{
"name": "vkbeautify-cli",
"version": "0.0.2",
"description": "cli to prettier xml, json, css and sql based on vkbeautify",
"keywords": [
"vkbeautify-cli",
"xml",
"json",
"css",
"sql",
"mysql",
"mariadb",
"min",
"minify",
"sqlmin",
"cssmin",
"jsonmin",
"xmlmin",
"pretty",
"prettier",
"beautify",
"code",
"format",
"formatter",
"vkbeautify",
"pretty",
"print"
],
"homepage": "https://github.com/codejamninja/vkbeautify-cli",
"bugs": {
"url": "https://github.com/codejamninja/vkbeautify-cli/issues",
"email": "jam@codejam.ninja"
},
"license": "MIT",
"author": {
"name": "Jam Risser",
"email": "jam@codejam.ninja",
"url": "https://codejam.ninja"
},
"files": [
"lib",
"bin"
],
"main": "lib/index.js",
"bin": {
"vkbeautify": "bin/bin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/codejamninja/vkbeautify-cli"
},
"scripts": {
"build": "npm run test && babel src -d lib --extensions \".ts,.tsx\" --source-maps inline && tsc -d --emitDeclarationOnly",
"clean": "git clean -fXd -e \\!node_modules -e \\!node_modules/**/* && jest --clearCache",
"clean:purge": "jest --clearCache && git clean -fXd",
"format": "prettier --write ./**/*.{json,md,scss,yaml,yml,js,jsx,ts,tsx} --ignore-path .gitignore",
"lint": "npm run format && tsc --allowJs --noEmit && eslint --ext .ts,.tsx ./",
"lint:fix": "npm run format && tsc --noEmit && eslint --ext .ts,.tsx --fix ./",
"prepublish": "npm run build",
"start": "babel-node --extensions \".ts,.tsx\" src/bin",
"test": "npm run lint && jest"
},
"dependencies": {
"commander": "^2.20.0",
"core-js": "^3.1.3",
"cosmiconfig": "^5.2.1",
"err": "^2.1.11",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"js-info": "^0.3.0",
"merge-configuration": "^0.4.1",
"ora": "^3.4.0",
"pkg-dir": "^4.2.0",
"ts-optchain.macro": "^1.1.5",
"vkbeautify": "^0.99.3"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@types/cosmiconfig": "^5.0.3",
"@types/fs-extra": "^8.0.0",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.13",
"@types/node": "^12.6.0",
"@types/pkg-dir": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"babel-preset-jam": "^0.4.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-typescript": "^4.0.0",
"eslint-config-jam": "^0.2.12",
"jest": "^24.8.0",
"tsc": "^1.20150623.0",
"typescript": "^3.5.1"
},
"engines": {
"node": ">=6.0.0"
},
"eslintIgnore": [
"lib"
],
"jest": {
"testRegex": "tests(/|/.*/)[^_/]*[jt]sx?$",
"verbose": true
}
}