-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
{
"name": "@stylistic/stylelint-config",
"description": "The stylistic shareable config for Stylelint.",
"version": "2.0.0",
"license": "MIT",
"author": {
"name": "Sergey Artemov",
"email": "firefoxic.dev@gmail.com"
},
"homepage": "https://github.com/stylelint-stylistic/stylelint-config#readme",
"bugs": {
"url": "https://github.com/stylelint-stylistic/stylelint-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stylelint-stylistic/stylelint-config.git"
},
"type": "module",
"exports": "./stylelint.config.js",
"files": [
"./stylelint.config.js"
],
"engines": {
"node": "^18.12 || >=20.9"
},
"peerDependencies": {
"stylelint": "^16.8.0"
},
"dependencies": {
"@stylistic/stylelint-plugin": "^3.0.1"
},
"scripts": {
"prepare": "husky",
"lint": "eslint",
"pretest": "pnpm lint",
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage",
"test:watch": "node --test --watch",
"preversion": "pnpm test",
"version": "update-changelog",
"postversion": "pnpm publish --provenance --access public --no-git-checks",
"postpublish": "git push --follow-tags"
},
"packageManager": "pnpm@9.7.1",
"devDependencies": {
"@firefoxic/eslint-config": "^3.0.0",
"@firefoxic/update-changelog": "^0.2.0",
"eslint": "^9.9.0",
"husky": "^9.1.4",
"stylelint": "^16.8.2"
},
"keywords": [
"codeguide",
"css",
"csslint",
"formatting",
"lint",
"linter",
"style",
"stylelint",
"stylelint-config",
"stylistic"
]
}