-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
{
"name": "@nodecraft/stylelint-config",
"version": "4.0.0",
"description": "Nodecraft base Stylelint config",
"keywords": [
"stylelint",
"config",
"javascript",
"nodecraft"
],
"homepage": "https://github.com/nodecraft/stylelint-config",
"bugs": {
"url": "https://github.com/nodecraft/stylelint-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodecraft/stylelint-config.git"
},
"license": "MIT",
"author": "Nodecraft Inc.",
"type": "module",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run"
},
"devDependencies": {
"@nodecraft/eslint-config": "^43.0.1",
"@stylistic/stylelint-plugin": "^3.0.0",
"@types/node": "^20.14.15",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^8.57.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-vitest": "^0.5.4",
"stylelint": "^16.8.2",
"stylelint-config-standard": "^36.0.1",
"vitest": "^2.0.5"
},
"peerDependencies": {
"@stylistic/stylelint-plugin": "^3.0.0",
"stylelint": "^16.8.2",
"stylelint-config-standard": "^36.0.1"
},
"engines": {
"node": ">= 20"
}
}