-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 830 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 830 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
{
"name": "berrytube-tools",
"description": "Root package for shared tools between the different packages in this project.",
"repository": "git@gitlab.com:berrytube/berrytube.git",
"license": "ISC",
"private": true,
"scripts": {
"prettier:fix": "prettier --write \"./**/*.{js,ts,json,md,yaml}\"",
"prettier:lint": "prettier --check \"./**/*.{js,ts,json,md,yaml}\"",
"eslint:fix": "eslint --fix docker/node/modules web/js/modules",
"eslint:lint": "eslint docker/node/modules web/js/modules",
"eslint:lint:all": "eslint ./",
"fix": "yarn run eslint:fix && yarn run prettier:fix",
"lint": "run-p eslint:lint prettier:lint"
},
"dependencies": {
"eslint": "^5.16.0",
"husky": "^2.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.1"
},
"husky": {
"hooks": {
"pre-commit1": "yarn run lint"
}
}
}