This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.79 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
{
"name": "auto-husky",
"description": "Installing husky made easy as woof!",
"version": "1.1.0",
"author": "Nicolas Goudry <goudry.nicolas@gmail.com>",
"bin": {
"auto-husky": "./bin/run"
},
"bugs": "https://github.com/g-script/auto-husky/issues",
"dependencies": {
"@oclif/command": "1.8.0",
"@oclif/config": "1.17.0",
"@oclif/plugin-help": "3.2.2",
"husky": "6.0.0",
"inquirer": "8.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "1.26.0",
"@semantic-release/git": "9.0.0",
"conventional-changelog-conventionalcommits": "4.6.0",
"eslint": "7.26.0",
"eslint-config-oclif": "3.1.0",
"lint-staged": "11.0.0",
"prettier": "2.3.0",
"semantic-release": "17.4.3",
"shx": "0.3.3"
},
"engines": {
"node": ">=10.1.0"
},
"files": [
"/bin",
"/src"
],
"homepage": "https://github.com/g-script/auto-husky",
"keywords": [
"auto-husky",
"oclif",
"husky",
"git",
"hooks",
"pre-commit"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"bin": "auto-husky"
},
"repository": "g-script/auto-husky",
"scripts": {
"eslint": "eslint --max-warnings=0 --ignore-path=.gitignore",
"fix": "yarn fix:other && yarn fix:code",
"fix:code": "yarn test:code --fix",
"fix:other": "yarn test:other --write",
"lint-staged": "lint-staged",
"prepare": "husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks",
"prettier": "prettier --ignore-path=.gitignore",
"release": "semantic-release",
"test": "yarn test:code && yarn test:other",
"test:code": "yarn eslint --ext .js .",
"test:other": "yarn prettier --list-different \"**/*.{json,md,yml}\""
},
"lint-staged": {
"*.js": "yarn eslint --fix",
"*.{json,md,yml}": "yarn prettier --write"
}
}