stylelint-config-concentric-order
Version:
This Stylelint configuration validates the ordering of CSS properties according to Concentric CSS
50 lines (49 loc) • 1.14 kB
JSON
{
"name": "stylelint-config-concentric-order",
"version": "5.2.1",
"description": "This Stylelint configuration validates the ordering of CSS properties according to Concentric CSS",
"author": "Alvin Chan <no@email.com>",
"license": "ISC",
"keywords": [
"stylelint",
"stylelint-config",
"concentric",
"order",
"sort"
],
"main": "src/index.js",
"homepage": "https://github.com/chaucerbao/stylelint-config-concentric-order#readme",
"repository": {
"type": "git",
"url": "https://github.com/chaucerbao/stylelint-config-concentric-order"
},
"bugs": {
"url": "https://github.com/chaucerbao/stylelint-config-concentric-order/issues"
},
"files": [
"src/index.js"
],
"prettier": {
"semi": false,
"singleQuote": true
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"ava": "^5.3.0",
"lint-staged": "^13.0.0",
"prettier": "^3.0.0",
"stylelint": "^15.0.0"
},
"dependencies": {
"stylelint-order": "^6.0.0"
},
"scripts": {
"test": "ava",
"precommit": "lint-staged"
}
}