forked from Skyscanner/stylelint-config-skyscanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "@skyscanner/stylelint-config-skyscanner",
"version": "6.0.0",
"description": "Skyscanner's stylelint config.",
"license": "Apache-2.0",
"engines": {
"node": ">=16.13.0",
"npm": ">=8.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Skyscanner/stylelint-config-skyscanner"
},
"author": "Backpack Design System <[email protected]>",
"keywords": [
"stylelint",
"scss",
"javascript",
"skyscanner"
],
"main": "index.js",
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"pretest": "npx ensure-node-env",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"!(LICENSE)*.md": [
"npm run spellcheck",
"prettier --write"
],
"**/!(package|package-lock).json": "prettier --write",
"**/*.yml": "prettier --write",
"*.js": "npm run lint:fix"
},
"dependencies": {
"@skyscanner/eslint-config-skyscanner": "^12.5.0",
"@skyscanner/stylelint-plugin-backpack": "^2.0.0",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-declaration-strict-value": "^1.8.0",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.1.0"
},
"devDependencies": {
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.8"
}
}