forked from streamich/git-cz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.53 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.53 KB
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
{
"name": "git-cz",
"version": "3.2.1",
"description": "Semantic emojified git commit, git-cz",
"main": "dist/cz.js",
"bin": {
"git-cz": "./bin/git-cz.js",
"gitcz": "./bin/git-cz.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/streamich/git-cz.git"
},
"homepage": "https://github.com/streamich/git-cz",
"license": "Unlicense",
"scripts": {
"lint": "yarn eslint",
"clean": "rimraf dist binaries",
"build": "yarn build:cli && yarn build:cz",
"build:cli": "browserify --node -o dist/cli.js lib/cli.js",
"build:cz": "browserify --node -o dist/cz.js --standalone prompter lib/cz.js",
"build:readme": "mmarkdown",
"build:binaries": "mkdirp binaries && pkg lib/cli.js --out-path binaries",
"test": "mocha",
"precommit": "yarn lint",
"semantic-release": "semantic-release",
"eslint": "eslint lib/*.js"
},
"devDependencies": {
"@semantic-release/changelog": "3.0.4",
"@semantic-release/git": "7.0.16",
"@semantic-release/github": "5.4.2",
"@semantic-release/npm": "5.1.13",
"any-shell-escape": "0.1.1",
"browserify": "16.3.0",
"chalk": "2.4.2",
"commitizen": "2.10.1",
"eslint": "4.19.1",
"eslint-config-mailonline": "9.0.0",
"husky": "0.14.3",
"inquirer": "6.5.0",
"minimist": "1.2.0",
"pkg": "4.4.0",
"rimraf": "2.6.3",
"semantic-release": "15.13.18",
"signale": "1.4.0",
"word-wrap": "1.2.3",
"mocha": "6.2.0"
},
"config": {
"commitizen": {
"path": "./dist/cz.js"
}
},
"mmarkdown": {
"src": "./build/readme.md",
"out": "./README.md",
"scripts": "./build/readme.js",
"backup": false
},
"dependencies": {
"global": "^4.3.2"
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
[
"@semantic-release/github",
{
"assets": [
{
"path": "binaries/cli-linux",
"label": "Linux binary"
},
{
"path": "binaries/cli-macos",
"label": "Mac binary"
},
{
"path": "binaries/cli-win.exe",
"label": "Windows binary"
}
]
}
]
]
}
}