-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.44 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": "@skyscanner/stylelint-config-skyscanner",
"version": "9.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 [email protected]",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"prepare": "husky",
"lint-staged": "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": "^17.4.0",
"@skyscanner/stylelint-plugin-backpack": "^3.0.0",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-declaration-strict-value": "^1.10.4",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^4.0.2",
"stylelint-scss": "^5.3.2"
},
"devDependencies": {
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.9"
}
}