-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.42 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "eslint-config-stylelint",
"version": "23.0.0",
"description": "stylelint org's shareable config for eslint",
"keywords": [
"eslint",
"eslintconfig"
],
"repository": "stylelint/eslint-config-stylelint",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/stylelint"
},
{
"type": "github",
"url": "https://github.com/sponsors/stylelint"
}
],
"license": "MIT",
"author": "stylelint",
"exports": {
".": "./index.js",
"./jest": "./jest.js"
},
"main": "index.js",
"files": [
"index.js",
"jest.js"
],
"scripts": {
"format": "prettier . --write",
"lint": "eslint . && prettier . --check",
"release": "np --no-release-draft",
"test": "node --test",
"watch": "node --test --watch"
},
"prettier": "@stylelint/prettier-config",
"dependencies": {
"@stylistic/eslint-plugin": "^2.12.1",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-regexp": "^2.6.0",
"globals": "^15.14.0"
},
"devDependencies": {
"@stylelint/prettier-config": "^3.0.0",
"eslint": "^9.13.0",
"np": "^10.1.0",
"prettier": "^3.4.2"
},
"peerDependencies": {
"eslint": ">=9.13.0",
"eslint-plugin-jest": ">=28.8.3"
},
"peerDependenciesMeta": {
"eslint-plugin-jest": {
"optional": true
}
},
"engines": {
"node": ">=18.18"
},
"publishConfig": {
"access": "public"
}
}