-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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": "stylelint-config-torchbox",
"version": "3.0.0",
"description": "Shareable stylelint config for CSS and SCSS, following Torchbox’s code style.",
"license": "MIT",
"author": "Torchbox Ltd",
"main": "./config.js",
"repository": {
"type": "git",
"url": "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": "8.57.1",
"jest": "29.7.0",
"prettier": "3.4.2",
"prettier-2": "npm:[email protected]",
"stylelint": "15.10.2",
"stylelint-find-new-rules": "4.1.2"
},
"dependencies": {
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-declaration-strict-value": "^1.9.2",
"stylelint-order": "^6.0.3"
},
"peerDependencies": {
"stylelint": "^15.0.0"
},
"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 && prettier --write README.md",
"test": "jest",
"test:rules": "stylelint-find-new-rules src/unused.js --unused --deprecated --invalid",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build:docs"
}
}