-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 KB
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
{
"name": "stylelint-config-spaceninja",
"version": "16.0.0",
"description": "Spaceninja's stylelint config",
"keywords": [
"stylelint",
"stylelint-config",
"spaceninja"
],
"repository": "spaceninja/stylelint-config-spaceninja",
"license": "MIT",
"author": "Scott Vandehey",
"type": "module",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "run-s lint:js lint:prettier",
"lint:check": "run-s lint:*:check",
"lint:js": "eslint --fix .",
"lint:js:check": "eslint .",
"lint:prettier": "prettier --write .",
"lint:prettier:check": "prettier --list-different .",
"test": "node --test",
"watch": "npm test --ignore-scripts -- --watch"
},
"prettier": "@stylelint/prettier-config",
"dependencies": {
"stylelint-config-standard-scss": "17.0.0",
"stylelint-declaration-block-no-ignored-properties": "3.0.0",
"stylelint-high-performance-animation": "2.0.0",
"stylelint-order": "7.0.1"
},
"devDependencies": {
"@stylelint/prettier-config": "4.0.0",
"eslint": "9.39.4",
"eslint-config-stylelint": "26.1.0",
"npm-run-all2": "8.0.4",
"postcss": "8.5.12",
"prettier": "3.8.3",
"stylelint": "17.6.0"
},
"peerDependencies": {
"stylelint": "^17.0.0"
},
"engines": {
"node": ">=20.19.0"
}
}