60 lines
1.7 KiB
JSON
60 lines
1.7 KiB
JSON
{
|
|
"name": "stylelint-scss",
|
|
"description": "A collection of SCSS-specific rules for Stylelint",
|
|
"version": "5.3.1",
|
|
"author": "Krister Kari",
|
|
"repository": "stylelint-scss/stylelint-scss",
|
|
"license": "MIT",
|
|
"main": "src/index.js",
|
|
"peerDependencies": {
|
|
"stylelint": "^14.5.1 || ^15.0.0"
|
|
},
|
|
"dependencies": {
|
|
"known-css-properties": "^0.29.0",
|
|
"postcss-media-query-parser": "^0.2.3",
|
|
"postcss-resolve-nested-selector": "^0.1.1",
|
|
"postcss-selector-parser": "^6.0.13",
|
|
"postcss-value-parser": "^4.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.52.0",
|
|
"github-contributors-list": "^1.2.5",
|
|
"husky": "^8.0.3",
|
|
"jest": "^29.7.0",
|
|
"jest-preset-stylelint": "^6.3.2",
|
|
"lint-staged": "^14.0.1",
|
|
"np": "^8.0.4",
|
|
"postcss": "^8.4.31",
|
|
"postcss-less": "^6.0.0",
|
|
"postcss-scss": "^4.0.9",
|
|
"prettier": "^3.0.3",
|
|
"stylelint": "^15.7.0"
|
|
},
|
|
"files": [
|
|
"src/**/*.js",
|
|
"!src/**/README.md",
|
|
"!**/__tests__/**"
|
|
],
|
|
"keywords": [
|
|
"css",
|
|
"csslint",
|
|
"lint",
|
|
"linter",
|
|
"scss",
|
|
"stylelint",
|
|
"stylelint-plugin"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint . --ignore-path .gitignore",
|
|
"prettify": "prettier --write \"src/**/*.js\" --ignore-path=.prettierignore",
|
|
"pretest": "npm run lint",
|
|
"release": "np",
|
|
"jest": "jest",
|
|
"test": "npm run jest -- --coverage",
|
|
"watch": "npm run jest -- --watch",
|
|
"test-rule": "npm run jest",
|
|
"test-util": "npm run jest",
|
|
"generate-contributors-list": "githubcontrib --owner stylelint-scss --repo stylelint-scss --cols 6 --sortOrder desc --filter greenkeeper[bot],dependabot[bot] --showlogin true --imagesize 80 --format html",
|
|
"prepare": "husky install"
|
|
}
|
|
}
|