You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.9 KiB
78 lines
1.9 KiB
{ |
|
"name": "stylelint-order", |
|
"version": "4.1.0", |
|
"description": "A collection of order related linting rules for stylelint.", |
|
"keywords": [ |
|
"stylelint-plugin", |
|
"stylelint", |
|
"css", |
|
"lint", |
|
"order" |
|
], |
|
"author": "Aleks Hudochenkov <aleks@hudochenkov.com>", |
|
"license": "MIT", |
|
"repository": "hudochenkov/stylelint-order", |
|
"files": [ |
|
"rules", |
|
"utils", |
|
"!**/tests", |
|
"index.js", |
|
"!.DS_Store" |
|
], |
|
"main": "index.js", |
|
"dependencies": { |
|
"lodash": "^4.17.15", |
|
"postcss": "^7.0.31", |
|
"postcss-sorting": "^5.0.1" |
|
}, |
|
"peerDependencies": { |
|
"stylelint": "^10.0.1 || ^11.0.0 || ^12.0.0 || ^13.0.0" |
|
}, |
|
"devDependencies": { |
|
"eslint": "^6.8.0", |
|
"eslint-config-hudochenkov": "^5.0.3", |
|
"eslint-config-prettier": "^6.11.0", |
|
"eslint-plugin-import": "^2.20.2", |
|
"eslint-plugin-unicorn": "^18.0.1", |
|
"husky": "^4.2.5", |
|
"jest": "^26.0.1", |
|
"jest-preset-stylelint": "^3.0.0", |
|
"jest-watch-typeahead": "^0.6.0", |
|
"lint-staged": "^10.2.7", |
|
"prettier": "~2.0.5", |
|
"prettier-config-hudochenkov": "^0.2.0", |
|
"stylelint": "^13.5.0" |
|
}, |
|
"scripts": { |
|
"pretest": "eslint . --max-warnings=0 && prettier '**/*.js' --check", |
|
"test": "jest", |
|
"jest": "jest", |
|
"watch": "jest --watch", |
|
"coverage": "jest --coverage", |
|
"fix": "eslint . --fix --max-warnings=0 && prettier '**/*.js' --write" |
|
}, |
|
"lint-staged": { |
|
"*.js": [ |
|
"eslint --fix --max-warnings=0", |
|
"prettier --write" |
|
] |
|
}, |
|
"jest": { |
|
"preset": "jest-preset-stylelint", |
|
"setupFiles": [ |
|
"./jest-setup.js" |
|
], |
|
"watchPlugins": [ |
|
"jest-watch-typeahead/filename", |
|
"jest-watch-typeahead/testname" |
|
], |
|
"testEnvironment": "node", |
|
"testRegex": ".*\\.test\\.js$|rules/.*/tests/.*\\.js$" |
|
}, |
|
"husky": { |
|
"hooks": { |
|
"pre-commit": "lint-staged" |
|
} |
|
}, |
|
"prettier": "prettier-config-hudochenkov" |
|
}
|
|
|