-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.77 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@fourkitchens/eslint-config-and-other-formatting",
"version": "0.0.0-development",
"description": "Four Kitchens' linting and formatting standards.",
"author": "Brian Lewis",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/fourkitchens/eslint-config-and-other-formatting.git"
},
"bugs": {
"url": "https://github.com/fourkitchens/eslint-config-and-other-formatting/issues"
},
"homepage": "https://github.com/fourkitchens/eslint-config-and-other-formatting",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"format": "npm run lint-fix; npm run prettier-fix",
"husky:commit-msg": "commitlint --edit $1",
"husky:pre-commit": "lint-staged",
"lint": "npm run lint-js; npm run lint-styles; npm run lint-php",
"lint-fix": "npm run lint-js -- --fix; npm run lint-styles -- --fix; vendor/bin/phpcbf",
"lint-js": "eslint .",
"lint-php": "vendor/bin/phpcs",
"lint-styles": "stylelint '**/*.scss'",
"prepare": "husky install",
"prettier": "prettier ./demo-files --ignore-unknown",
"prettier-fix": "prettier ./demo-files --write --ignore-unknown",
"semantic-release": "semantic-release",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/github": "^8.0.2",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.6",
"semantic-release": "^18.0.1",
"stylelint": "^14.2.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-selector-bem-pattern": "^2.1.1"
},
"peerDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/github": "^8.0.2",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.6",
"semantic-release": "^18.0.1",
"stylelint": "^14.2.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-selector-bem-pattern": "^2.1.1"
},
"lint-staged": {
"**/*.js": [
"npm run lint-js -- --fix"
],
"**/*.scss": [
"npm run lint-styles -- --fix"
],
"**/*.php": [
"vendor/bin/phpcbf"
],
"**/*.{js,scss,php}": [
"npm run prettier-fix"
]
}
}