1 | {
|
2 | "name": "stylelint-config-standard",
|
3 | "version": "36.0.1",
|
4 | "description": "Standard shareable config for Stylelint",
|
5 | "keywords": [
|
6 | "stylelint",
|
7 | "stylelint-config",
|
8 | "standard"
|
9 | ],
|
10 | "repository": "stylelint/stylelint-config-standard",
|
11 | "funding": [
|
12 | {
|
13 | "type": "opencollective",
|
14 | "url": "https://opencollective.com/stylelint"
|
15 | },
|
16 | {
|
17 | "type": "github",
|
18 | "url": "https://github.com/sponsors/stylelint"
|
19 | }
|
20 | ],
|
21 | "license": "MIT",
|
22 | "author": "Stylelint",
|
23 | "main": "index.js",
|
24 | "files": [
|
25 | "index.js"
|
26 | ],
|
27 | "scripts": {
|
28 | "format": "prettier . --write",
|
29 | "prepare": "husky",
|
30 | "lint:formatting": "prettier . --check",
|
31 | "lint:js": "eslint . --ignore-path .gitignore",
|
32 | "lint:md": "remark . --quiet --frail --ignore-path .gitignore",
|
33 | "lint": "npm-run-all --parallel lint:*",
|
34 | "release": "np --no-release-draft",
|
35 | "pretest": "npm run lint",
|
36 | "test": "node --test",
|
37 | "watch": "npm test --ignore-scripts -- --watch"
|
38 | },
|
39 | "lint-staged": {
|
40 | "*.js": "eslint --cache --fix",
|
41 | "*.{js,md,yml}": "prettier --write"
|
42 | },
|
43 | "prettier": "@stylelint/prettier-config",
|
44 | "eslintConfig": {
|
45 | "extends": [
|
46 | "stylelint"
|
47 | ],
|
48 | "globals": {
|
49 | "module": true,
|
50 | "require": true
|
51 | }
|
52 | },
|
53 | "remarkConfig": {
|
54 | "plugins": [
|
55 | "@stylelint/remark-preset"
|
56 | ]
|
57 | },
|
58 | "dependencies": {
|
59 | "stylelint-config-recommended": "^14.0.1"
|
60 | },
|
61 | "devDependencies": {
|
62 | "@stylelint/prettier-config": "^3.0.0",
|
63 | "@stylelint/remark-preset": "^5.1.1",
|
64 | "eslint": "^8.57.0",
|
65 | "eslint-config-stylelint": "^21.0.0",
|
66 | "husky": "^9.0.11",
|
67 | "lint-staged": "^15.2.7",
|
68 | "np": "^10.0.6",
|
69 | "npm-run-all": "^4.1.5",
|
70 | "prettier": "^3.3.2",
|
71 | "remark-cli": "^12.0.1",
|
72 | "stylelint": "^16.2.1"
|
73 | },
|
74 | "peerDependencies": {
|
75 | "stylelint": "^16.1.0"
|
76 | },
|
77 | "engines": {
|
78 | "node": ">=18.12.0"
|
79 | }
|
80 | }
|