-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.86 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
67
68
69
70
71
72
73
74
75
76
{
"name": "create-stylelint",
"version": "0.5.0",
"description": "The npm init script for Stylelint.",
"keywords": [
"stylelint",
"npm init"
],
"repository": "stylelint/create-stylelint",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/stylelint"
},
{
"type": "github",
"url": "https://github.com/sponsors/stylelint"
}
],
"license": "MIT",
"author": "stylelint",
"main": "create-stylelint.mjs",
"bin": {
"create-stylelint": "./create-stylelint.mjs"
},
"files": [
"src"
],
"scripts": {
"format": "prettier . --write --cache",
"lint": "npm-run-all --parallel --continue-on-error lint:*",
"lint:formatting": "prettier . --check --cache",
"lint:js": "eslint",
"lint:md": "remark . --quiet --frail",
"lint:packagejson": "npmPkgJsonLint .",
"lint:types": "tsc",
"pretest": "npm run lint",
"test": "vitest run",
"watch": "vitest watch",
"release": "np --no-release-draft"
},
"prettier": "@stylelint/prettier-config",
"npmpackagejsonlint": {
"extends": "@stylelint/npm-package-json-lint-config"
},
"remarkConfig": {
"plugins": [
"@stylelint/remark-preset"
]
},
"dependencies": {
"cosmiconfig": "^9.0.0",
"execa": "^9.5.1",
"ora": "^8.1.1",
"picocolors": "^1.1.1",
"semver": "^7.6.3",
"strip-indent": "^4.0.0",
"which-pm-runs": "^1.1.0"
},
"devDependencies": {
"@stylelint/npm-package-json-lint-config": "^5.1.0",
"@stylelint/prettier-config": "^3.0.0",
"@stylelint/remark-preset": "^5.1.1",
"@types/which-pm-runs": "^1.0.2",
"eslint": "^9.16.0",
"eslint-config-stylelint": "^23.0.0",
"np": "^10.1.0",
"npm-run-all": "^4.1.5",
"remark-cli": "^12.0.1",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
},
"engines": {
"node": ">=18.19.0"
}
}