posthtml-spaceless
Version:
A posthtml plugin remove whitespace between HTML tags
126 lines (125 loc) • 2.86 kB
JSON
{
"name": "posthtml-spaceless",
"version": "0.0.3",
"description": "A posthtml plugin remove whitespace between HTML tags",
"license": "MIT",
"repository": "GitScrum/posthtml-spaceless",
"homepage": "GitScrum/posthtml-spaceless#readme",
"bugs": "GitScrum/posthtml-spaceless/issues",
"author": {
"name": "Ivan Demidov",
"email": "Scrum@list.ru",
"url": "https://twitter.com/Scrum_"
},
"main": "lib/index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"pretest": "clinton && lint-staged",
"commitmsg": "commitlint --extends=@commitlint/config-angular -e",
"postpublish": "conventional-changelog -i CHANGELOG.md -s -r 0 && git commit -am \"chore(changelog): Update changelog\"",
"patch": "np patch --any-branch --no-yarn",
"minor": "np minor --any-branch --no-yarn",
"major": "np major --any-branch --no-yarn",
"test": "nyc ava",
"build": "rimraf lib && babel src -d lib",
"prepare": "npm run build"
},
"files": [
"lib"
],
"keywords": [
"html",
"posthtml",
"posthtml-plugin",
"remove",
"tags"
],
"dependencies": {
"posthtml-parser": "^0.3.0",
"posthtml-render": "1.0.6"
},
"devDependencies": {
"@commitlint/cli": "^5.1.1",
"@commitlint/config-angular": "^5.1.1",
"ava": "*",
"babel-cli": "^6.11.4",
"babel-eslint": "^8.0.2",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-preset-env": "^1.1.8",
"babel-preset-minify": "^0.2.0",
"babel-register": "^6.11.6",
"clinton": "^0.13.0",
"conventional-changelog-cli": "^1.2.0",
"conventional-changelog-lint": "^2.1.1",
"coveralls": "^3.0.0",
"eslint": "^4.12.0",
"eslint-config-xo": "^0.19.0",
"eslint-plugin-ava": "^4.3.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-markdown": "^1.0.0-beta.7",
"eslint-plugin-unicorn": "^3.0.0",
"husky": "^0.14.3",
"is-promise": "^2.1.0",
"lint-staged": "^5.0.0",
"np": "^2.6.0",
"nyc": "^11.3.0",
"posthtml": "^0.10.1",
"rimraf": "^2.6.2"
},
"ava": {
"require": [
"babel-register"
]
},
"lint-staged": {
"*.{js,html}": "eslint",
"./*.md": "eslint --rule indent: [error, 4] ."
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 4
}
}
],
"minify"
],
"plugins": [
"add-module-exports"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"ava",
"unicorn",
"babel",
"markdown"
],
"extends": [
"xo",
"plugin:ava/recommended"
]
},
"clinton": {
"ignores": [
"test/**",
"tmp/**",
"lib/**",
"*.{html,jpg}"
],
"rules": {
"pkg-main": [
"off"
],
"xo": [
"off"
]
}
}
}