-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1007 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1007 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
30
31
32
33
34
35
36
37
{
"name": "gitflow-3",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"eslint": "^8.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"lint-staged": {
"src/**/*.{js,jsx}": ["prettier --write ","npm run eslint-always-success" ]
},
"scripts": {
"eslint-always-success": "eslint --fix || exit 0",
"test": "echo \"Error: no test specified\" && exit 1",
"lint-staged": "lint-staged --config lint-staged.js",
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ciobanu0151/gitflow-3.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ciobanu0151/gitflow-3/issues"
},
"homepage": "https://github.com/ciobanu0151/gitflow-3#readme"
}