posthtml-remove-tags
Version:
A posthtml plugin for removing tags
129 lines (128 loc) • 3.02 kB
JSON
{
"name": "posthtml-remove-tags",
"version": "0.1.0",
"description": "A posthtml plugin for removing tags",
"license": "MIT",
"repository": "GitScrum/posthtml-remove-tags",
"homepage": "githum.com/GitScrum/posthtml-remove-tags#readme",
"bugs": "GitScrum/posthtml-remove-tags/issues",
"author": {
"name": "Ivan Demidov",
"email": "Scrum@list.ru",
"url": "https://twitter.com/Scrum_"
},
"main": "lib/index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"lintjs": "eslint ./{src,test}/*.js",
"lintmd": "eslint --ext md --rule indent: [error, 4] .",
"pretest": "clinton && npm run lintjs && npm run lintmd",
"commitmsg": "conventional-changelog-lint -e",
"postpublish": "conventional-changelog -i changelog.md -s -r 0 && git commit -am \"chore(changelog): Update changelog\"",
"patch": "np patch --any-branch",
"minor": "np minor --any-branch",
"major": "np major --any-branch",
"test": "nyc ava",
"build": "rimraf lib && babel src -d lib",
"prepublish": "npm run build",
"update": "updtr && ava-codemods --force",
"testen": "testen -n -- ava"
},
"files": [
"lib/"
],
"keywords": [
"html",
"posthtml",
"posthtml-plugin",
"remove",
"tags"
],
"dependencies": {},
"devDependencies": {
"ava": "*",
"ava-codemods": "^0.3.2",
"babel-cli": "^6.11.4",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-min": "^0.1.15",
"babel-register": "^6.11.6",
"clinton": "^0.12.0",
"conventional-changelog-cli": "^1.2.0",
"conventional-changelog-lint": "^1.0.0",
"coveralls": "^2.11.12",
"eslint": "^3.1.1",
"eslint-config-xo": "^0.18.1",
"eslint-formatter-pretty": "^1.1.0",
"eslint-plugin-ava": "^4.2.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-markdown": "^1.0.0-beta.2",
"eslint-plugin-require-path-exists": "^1.1.5",
"eslint-plugin-xo": "^1.0.0",
"husky": "^0.13.3",
"is-promise": "^2.1.0",
"np": "^2.6.0",
"nyc": "^10.3.0",
"posthtml": "^0.9.0",
"rimraf": "^2.6.1",
"testen": "^2.2.0",
"updtr": "^1.0.0"
},
"ava": {
"require": [
"babel-register"
]
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports"
],
"comments": false,
"compact": true,
"minified": true
},
"eslintConfig": {
"format": "node_modules/eslint-formatter-pretty",
"parser": "babel-eslint",
"plugins": [
"ava",
"xo",
"babel",
"markdown"
],
"extends": [
"xo",
"plugin:xo/recommended",
"plugin:ava/recommended"
]
},
"clinton": {
"ignores": [
"test/**",
"tmp/**",
"lib/**",
"*.{html,jpg}"
],
"rules": {
"pkg-main": [
"off"
],
"xo": [
"off"
]
}
},
"testen": {
"node": [
"4",
"5",
"6"
]
}
}