Files
DeviceManager/node_modules/stylelint-scss/package.json

60 lines
1.7 KiB
JSON

{
"name": "stylelint-scss",
"description": "A collection of SCSS-specific rules for Stylelint",
"version": "5.1.0",
"author": "Krister Kari",
"repository": "stylelint-scss/stylelint-scss",
"license": "MIT",
"main": "src/index.js",
"peerDependencies": {
"stylelint": "^14.5.1 || ^15.0.0"
},
"dependencies": {
"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.46.0",
"github-contributors-list": "^1.2.5",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-preset-stylelint": "^6.1.1",
"lint-staged": "^13.2.3",
"np": "^8.0.4",
"postcss": "^8.4.27",
"postcss-less": "^6.0.0",
"postcss-scss": "^4.0.6",
"prettier": "^3.0.0",
"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"
}
}