-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.02 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
{
"name": "gitcommit",
"description": "Lightweight and joyful `git commit` replacement. Conventional Commits compliant.",
"nspId": "a3213fd4-9f9a-46a1-a472-055c49331b92",
"license": "Apache-2.0",
"licenseStart": 2017,
"scripts": {
"lint": "hela lint",
"test": "hela test --no-build",
"precommit": "yarn lint && yarn test && git add --all",
"commit": "node ./src/cli.js",
"commit-dry": "git add --all && node ./src/cli.js",
"release": "hela release --no-build",
"prepublishOnly": "hela protect"
},
"engines": {
"node": ">=8.6",
"npm": ">=5.2",
"yarn": ">=1.3"
},
"dependencies": {
"execa": "^3.0.0",
"mri": "^1.1.0",
"prompts": "^2.0.0"
},
"devDependencies": {
"hela": "^2.0.9",
"hela-config-tunnckocore": "^3.0.19",
"mukla": "^0.4.9"
},
"bin": {
"gitcommit": "./src/cli.js"
},
"files": [
"src"
],
"eslintConfig": {
"extends": "tunnckocore"
},
"renovate": {
"extends": "tunnckocore"
},
"hela": {
"extends": "tunnckocore"
},
"nyc": {
"statements": 100,
"functions": 100,
"branches": 92.31,
"lines": 100,
"exclude": [
"test"
],
"extension": [
".js",
".jsx",
".mjs"
]
},
"version": "0.0.0-semantically-released",
"repository": "tunnckoCore/gitcommit",
"homepage": "https://github.com/tunnckoCore/gitcommit",
"author": "Charlike Mike Reagent (http://tunnckocore.com)",
"cdn": "./dist/index.umd.js",
"main": "./src/index.js",
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 3,
"footer": ""
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"try-catch-core",
"new-release",
"hela-config-tunnckocore"
],
"highlight": "prompts"
},
"lint": {
"reflinks": true
},
"reflinks": [
"always-done",
"dezalgo",
"hela",
"new-release",
"once",
"semantic-release"
]
}
}