67 lines
1.6 KiB
JSON
67 lines
1.6 KiB
JSON
{
|
|
"name": "postcss-extend-rule",
|
|
"version": "2.0.0",
|
|
"description": "Use the @extend at-rule and functional selectors in CSS",
|
|
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
|
|
"license": "CC0-1.0",
|
|
"repository": "jonathantneal/postcss-extend-rule",
|
|
"homepage": "https://github.com/jonathantneal/postcss-extend-rule#readme",
|
|
"bugs": "https://github.com/jonathantneal/postcss-extend-rule/issues",
|
|
"main": "index.cjs.js",
|
|
"module": "index.es.js",
|
|
"files": [
|
|
"index.cjs.js",
|
|
"index.es.js"
|
|
],
|
|
"scripts": {
|
|
"prepublishOnly": "npm test",
|
|
"pretest": "rollup -c .rollup.js --silent",
|
|
"test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
|
|
"test:js": "eslint *.js --cache --ignore-path .gitignore --quiet",
|
|
"test:tape": "postcss-tape"
|
|
},
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
},
|
|
"dependencies": {
|
|
"postcss": "^6.0.22",
|
|
"postcss-nesting": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.26.3",
|
|
"babel-eslint": "^8.2.3",
|
|
"babel-preset-env": "^1.7.0",
|
|
"eslint": "^4.19.1",
|
|
"eslint-config-dev": "^2.0.0",
|
|
"postcss-tape": "^2.2.0",
|
|
"pre-commit": "^1.2.2",
|
|
"rollup": "^0.59.4",
|
|
"rollup-plugin-babel": "^3.0.4"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "dev",
|
|
"parser": "babel-eslint"
|
|
},
|
|
"keywords": [
|
|
"postcss",
|
|
"css",
|
|
"postcss-plugin",
|
|
"extend",
|
|
"matched",
|
|
"matches",
|
|
"match",
|
|
"selectors",
|
|
"subclassing",
|
|
"subclasses",
|
|
"subclass",
|
|
"styling",
|
|
"styles",
|
|
"style",
|
|
"placeholder",
|
|
"placehold",
|
|
"selectors",
|
|
"selector",
|
|
"chaining"
|
|
]
|
|
}
|