-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.74 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "stylelint-config-torchbox",
"version": "5.0.0",
"description": "Shareable stylelint config for CSS and SCSS, following Torchbox’s code style.",
"license": "MIT",
"type": "module",
"author": "Torchbox Ltd",
"main": "./config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/torchbox/stylelint-config-torchbox.git"
},
"bugs": {
"url": "https://github.com/torchbox/stylelint-config-torchbox/issues"
},
"homepage": "https://github.com/torchbox/stylelint-config-torchbox",
"keywords": [
"stylelint",
"config",
"stylelint-config",
"lint",
"styleguide",
"itcss",
"bem"
],
"files": [
"config.js"
],
"devDependencies": {
"@eslint/js": "10.0.1",
"eslint": "10.5.0",
"prettier": "3.8.4",
"stylelint": "17.4.0",
"stylelint-find-new-rules": "6.0.0",
"vitest": "4.1.9"
},
"dependencies": {
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-declaration-strict-value": "^1.11.1",
"stylelint-order": "^7.0.1"
},
"peerDependencies": {
"stylelint": "^17.0.0"
},
"devEngines": {
"packageManager": {
"name": "npm"
}
},
"scripts": {
"prepare": "./.githooks/deploy.sh",
"lint": "eslint --report-unused-disable-directives . && prettier --check '**/?(.)*.{md,css,scss,js,json,yaml,yml,html}'",
"format": "prettier --write '**/?(.)*.{md,css,scss,js,json,yaml,yml,html}'",
"build:docs": "node src/documentation.js && npm run format",
"demo": "npm run build:docs && stylelint --config config.js demo.css",
"test": "vitest run",
"test:rules": "stylelint-find-new-rules src/unused.js --unused --deprecated --invalid",
"test:watch": "vitest watch",
"prepublishOnly": "npm run build:docs"
}
}