-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "@cybozu/stylelint-config",
"version": "0.3.1",
"description": "A shareable stylelint config for Cybozu",
"main": "index.js",
"files": [
"index.js",
"styled-components.js"
],
"scripts": {
"lint": "eslint '**/*.js'",
"prerelease": "run-p lint test",
"release": "standard-version",
"release:dryrun": "standard-version --dry-run",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"stylelint"
],
"repository": "cybozu/stylelint-config",
"homepage": "https://github.com/cybozu/stylelint-config",
"bugs": "https://github.com/cybozu/stylelint-config/issues",
"author": "cybozu",
"license": "MIT",
"dependencies": {
"postcss-styled-syntax": "0.6.4",
"stylelint-config-standard": "36.0.1"
},
"devDependencies": {
"@cybozu/eslint-config": "23.0.0",
"@jest/globals": "29.7.0",
"eslint": "8.57.1",
"jest": "29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "3.2.5",
"standard-version": "9.5.0",
"stylelint": "16.3.1",
"typescript": "5.4.5"
},
"peerDependencies": {
"stylelint": "^16.0.0"
}
}