postcss-attribute-selector-prefix
Version:
A attribute selector prefixer for postcss
148 lines (147 loc) • 3.43 kB
JSON
{
"name": "postcss-attribute-selector-prefix",
"version": "0.1.1",
"description": "A attribute selector prefixer for postcss",
"license": "MIT",
"repository": "GitScrum/postcss-attribute-selector-prefix",
"homepage": "GitScrum/postcss-attribute-selector-prefix#readme",
"bugs": "GitScrum/postcss-attribute-selector-prefix/issues",
"author": {
"name": "Ivan Demidov",
"email": "Scrum@list.ru",
"url": "https://twitter.com/Scrum_"
},
"main": "lib/index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"version": "conventional-changelog -i changelog.md -s -r 0 && git add changelog.md && git commit -m \"build: update changelog\"",
"prepare": "npm run build",
"build": "rimraf lib && babel src -d lib",
"test": "nyc ava",
"lintjs": "eslint ./src/*.js ./test/*.js --fix",
"lintmd": "eslint *.md --fix && yaspeller readme.md",
"pretest": "clinton && npm run lintjs && npm run lintmd"
},
"files": [
"lib/"
],
"keywords": [
"postcss",
"postcss-plugin",
"prefix",
"css"
],
"dependencies": {
"postcss": "^7.0.14"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"@commitlint/cli": "^7.4.0",
"@commitlint/config-angular": "^7.3.1",
"ava": "*",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-preset-minify": "^0.5.0",
"clinton": "^0.14.0",
"conventional-changelog-cli": "^2.0.12",
"coveralls": "^3.0.3",
"eslint": "^5.12.1",
"eslint-config-xo": "^0.26.0",
"eslint-config-xo-space": "^0.21.0",
"eslint-plugin-ava": "^6.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-dependencies": "^2.4.0",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-require-path-exists": "^1.1.5",
"eslint-plugin-unicorn": "^8.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.1",
"nyc": "^13.1.0",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"yaspeller": "^5.0.1"
},
"husky": {
"hooks": {
"pre-push": "npm t",
"pre-commit": "clinton && lint-staged",
"commit-msg": "commitlint --extends=@commitlint/config-angular -e"
}
},
"lint-staged": {
"{src,test}/**/*.js": "eslint",
"*.md": "eslint"
},
"ava": {
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": 4
}
}
],
[
"minify",
{
"removeUndefined": false,
"mangle": false
}
]
],
"plugins": [
"add-module-exports"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"prettier",
"dependencies",
"html",
"unicorn",
"babel",
"markdown"
],
"extends": [
"plugin:ava/recommended",
"plugin:unicorn/recommended",
"xo",
"xo-space"
],
"rules": {
"capitalized-comments": "off"
}
},
"clinton": {
"ignores": [
"test/**",
"tmp/**",
"lib/**",
"*.{html,jpg}"
],
"rules": {
"pkg-main": "off",
"xo": "off"
}
},
"yaspeller": {
"dictionary": [
"post(css|CSS)",
"v6"
]
}
}