UNPKG

1.92 kBJSONView Raw
1{
2 "name": "stylelint-scss",
3 "description": "A collection of SCSS-specific rules for Stylelint",
4 "version": "6.5.1",
5 "author": "Krister Kari",
6 "repository": "stylelint-scss/stylelint-scss",
7 "license": "MIT",
8 "main": "src/index.js",
9 "engines": {
10 "node": ">=18.12.0"
11 },
12 "peerDependencies": {
13 "stylelint": "^16.0.2"
14 },
15 "dependencies": {
16 "css-tree": "2.3.1",
17 "is-plain-object": "5.0.0",
18 "known-css-properties": "^0.34.0",
19 "postcss-media-query-parser": "^0.2.3",
20 "postcss-resolve-nested-selector": "^0.1.4",
21 "postcss-selector-parser": "^6.1.1",
22 "postcss-value-parser": "^4.2.0"
23 },
24 "devDependencies": {
25 "cross-env": "^7.0.3",
26 "eslint": "^8.57.0",
27 "github-contributors-list": "^1.2.5",
28 "husky": "^9.1.4",
29 "jest": "^29.7.0",
30 "jest-preset-stylelint": "^7.1.0",
31 "lint-staged": "^14.0.1",
32 "np": "^10.0.7",
33 "postcss": "^8.4.40",
34 "postcss-less": "^6.0.0",
35 "postcss-scss": "^4.0.9",
36 "prettier": "^3.3.3",
37 "stylelint": "^16.8.1"
38 },
39 "files": [
40 "src/**/*.js",
41 "!src/**/README.md",
42 "!**/__tests__/**"
43 ],
44 "keywords": [
45 "css",
46 "csslint",
47 "lint",
48 "linter",
49 "scss",
50 "stylelint",
51 "stylelint-plugin"
52 ],
53 "scripts": {
54 "lint": "eslint . --ignore-path .gitignore",
55 "prettify": "prettier --write \"src/**/*.js\" --ignore-path=.prettierignore",
56 "pretest": "npm run lint",
57 "release": "np",
58 "jest": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest",
59 "test": "npm run jest -- --coverage",
60 "watch": "npm run jest -- --watch",
61 "test-rule": "npm run jest",
62 "test-util": "npm run jest",
63 "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",
64 "prepare": "husky install"
65 }
66}