-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.33 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
{
"name": "esgit",
"version": "0.0.0-semantically-released",
"description": "CLI package with simplified aliases for git commands",
"main": "./bin/index.js",
"scripts": {
"lint": "prettier --write .",
"test": "mocha || true",
"commit": "git-cz",
"preGenerateFiles": "node bin/index.js generatePreFiles",
"install": "npm run preGenerateFiles",
"validate": "npm run test",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/dillionmegida/esgit.git"
},
"files": [
"src",
"bin"
],
"keywords": [
"git, easy-git, esgit, git-aliases"
],
"author": "Dillion Megida <dillionmegida@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dillionmegida/esgit/issues"
},
"homepage": "https://github.com/dillionmegida/esgit#readme",
"bin": {
"esgit": "./bin/index.js"
},
"dependencies": {
"chalk": "^4.0.0",
"cross-cmd": "^2.0.0",
"enquirer": "^2.3.5"
},
"config": {
"ghooks": {
"pre-commit": "npm run validate",
"post-merge": "npm run preGenerateFiles"
},
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"chai": "^4.2.0",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "^3.1.0",
"ghooks": "^2.0.4",
"mocha": "^7.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"semantic-release": "^17.0.6"
}
}