stylelint-use-nesting
Version:
Enforce nesting when it is possible in CSS
45 lines (44 loc) • 1.14 kB
JSON
{
"name": "stylelint-use-nesting",
"version": "6.0.0",
"description": "Enforce nesting when it is possible in CSS",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"repository": "csstools/stylelint-use-nesting",
"homepage": "https://github.com/csstools/stylelint-use-nesting#readme",
"bugs": "https://github.com/csstools/stylelint-use-nesting/issues",
"main": "index.mjs",
"type": "module",
"files": [
"lib",
"index.mjs"
],
"scripts": {
"prepublishOnly": "npm test",
"test": "npm run test:js && npm run test:tape",
"test:js": "eslint index.mjs lib/*.mjs --cache --ignore-path .gitignore --quiet",
"test:tape": "stylelint-tape --cwd ./ --plugin index.mjs"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-dev": "^3.1.0",
"stylelint": "^16.9.0",
"stylelint-tape": "^5.0.1"
},
"peerDependencies": {
"stylelint": ">= 16.9.0"
},
"eslintConfig": {
"extends": "dev"
},
"keywords": [
"stylelint",
"stylelint-plugin",
"css",
"prefer",
"nesting"
]
}