forked from area17/twill-http-basic-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 747 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 747 Bytes
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
{
"name": "twill-feature-flags",
"private": true,
"scripts": {
"precommit": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"package.json": "sort-package-json",
"**/*": "sh tools/linters.sh conflict-markers",
"**/*.php": [
"sh tools/linters.sh phpstan",
"sh tools/linters.sh prettify"
]
},
"dependencies": {},
"devDependencies": {
"@prettier/plugin-php": "~0.18.9",
"@shufo/prettier-plugin-blade": "~1.5.4",
"husky": "~8.0.1",
"lint-staged": "~13.0.3",
"prettier": "~2.7.1",
"sort-package-json": "~1.57.0"
},
"engines": {
"node": "~16",
"npm": "~8"
}
}