63 lines
1.5 KiB
JSON
63 lines
1.5 KiB
JSON
{
|
|
"name": "postcss-nesting",
|
|
"version": "5.0.0",
|
|
"description": "Nest style rules inside each other",
|
|
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
|
|
"license": "CC0-1.0",
|
|
"repository": "jonathantneal/postcss-nesting",
|
|
"homepage": "https://github.com/jonathantneal/postcss-nesting#readme",
|
|
"bugs": "https://github.com/jonathantneal/postcss-nesting/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 lib/*.js --cache --ignore-path .gitignore --quiet",
|
|
"test:tape": "postcss-tape"
|
|
},
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
},
|
|
"dependencies": {
|
|
"postcss": "^6.0.21"
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.26.0",
|
|
"babel-eslint": "^8.2.3",
|
|
"babel-preset-env": "^1.6.1",
|
|
"eslint": "^4.19.1",
|
|
"eslint-config-dev": "^2.0.0",
|
|
"postcss-tape": "^2.2.0",
|
|
"pre-commit": "^1.2.2",
|
|
"rollup": "^0.58.2",
|
|
"rollup-plugin-babel": "^3.0.4"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "dev",
|
|
"parser": "babel-eslint"
|
|
},
|
|
"keywords": [
|
|
"postcss",
|
|
"css",
|
|
"postcss-plugin",
|
|
"atrules",
|
|
"child",
|
|
"children",
|
|
"cssnext",
|
|
"nested",
|
|
"nestings",
|
|
"rules",
|
|
"selectors",
|
|
"syntax",
|
|
"specifications",
|
|
"specs",
|
|
"w3c",
|
|
"csswg"
|
|
]
|
|
}
|