-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
112 lines (112 loc) · 2.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "gacp",
"version": "3.0.3",
"description": "💬Git add, commit, push with Conventional Commits and Gitmoji.",
"main": "lib/gacp.js",
"types": "lib/gacp.d.ts",
"bin": {
"gacp": "lib/bin.js"
},
"scripts": {
"build": "tsc",
"test": "jest",
"coverage": "jest --collect-coverage",
"beta": "npm run test && npm run build && npm publish --registry=https://registry.npmjs.org/ --tag beta",
"release": "npm run test && npm run build && standard-version && git push --follow-tags && npm publish --registry=https://registry.npmjs.org/",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vivaxy/gacp.git"
},
"keywords": [
"git",
"changelog",
"nodejs",
"conventional-changelog",
"gitmoji",
"emoji",
"standard-version",
"commit",
"commit-message",
"commit-conventions",
"commitizen",
"git-add",
"git-commit",
"git-push",
"gacp"
],
"author": "vivaxy",
"license": "MIT",
"bugs": {
"url": "https://github.com/vivaxy/gacp/issues"
},
"homepage": "https://github.com/vivaxy/gacp#readme",
"dependencies": {
"@commitlint/load": "^12.0.0",
"@commitlint/types": "^12.0.0",
"@vivaxy/git": "^4.2.1",
"chalk": "^4.0.0",
"conventional-commit-types": "^3.0.0",
"cosmiconfig": "^7.0.0",
"execa": "^5.0.0",
"external-editor": "^3.1.0",
"figures": "^3.0.0",
"fs-extra": "^10.0.0",
"log-util": "^2.3.0",
"prompts": "^2.3.1",
"right-pad": "^1.0.1",
"update-notifier": "^5.0.0",
"word-wrap": "^1.2.3",
"yargs": "^17.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.0",
"@types/prompts": "^2.0.1",
"@types/update-notifier": "^5.0.0",
"@types/word-wrap": "^1.2.0",
"@types/yargs": "^17.0.0",
"cross-env": "^7.0.2",
"husky": "6",
"jest": "^26.0.1",
"lint-staged": "^11.0.0",
"pinst": "^2.1.4",
"prettier": "^2.0.0",
"standard-version": "^9.0.0",
"ts-jest": "^26.0.0",
"typescript": "^4.0.0"
},
"lint-staged": {
"*.{js,ts,css,less,json,md,html,yml,yaml,pcss,jsx,tsx}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"gacp": {
"hooks": {
"postpush": "echo 'push done'"
}
},
"jest": {
"testEnvironment": "node",
"preset": "ts-jest",
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.test.ts?(x)"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/__tests__/**/*.ts"
]
}
}