-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathpackage.json
89 lines (89 loc) · 2.41 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
{
"name": "git-cz",
"version": "4.8.0",
"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://[email protected]/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": "jest --maxWorkers 2",
"test:dev": "jest --watch",
"test:coverage": "jest --coverage",
"release": "semantic-release",
"eslint": "eslint lib/*.js"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"any-shell-escape": "0.1.1",
"browserify": "17.0.1",
"chai": "4.5.0",
"chalk": "4.1.2",
"commitizen": "4.3.1",
"eslint": "7.32.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-jsdoc": "41.1.2",
"eslint-plugin-no-use-extend-native": "0.5.0",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-unicorn": "23.0.0",
"fuzzy": "0.1.3",
"global": "4.4.0",
"husky": "8.0.3",
"inquirer": "8.2.6",
"inquirer-list-search-prompt": "1.0.2",
"jest": "28.1.3",
"minimist": "1.2.8",
"mocha": "10.7.3",
"pkg": "5.8.1",
"rimraf": "5.0.10",
"semantic-release": "19.0.5",
"signale": "1.4.0",
"spawncommand": "2.2.0",
"word-wrap": "1.2.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"prepare-commit-msg": "exec < /dev/tty && node ./lib/cli.js --hook || true"
}
},
"config": {
"commitizen": {
"path": "./dist/cz.js"
}
},
"mmarkdown": {
"src": "./build/readme.md",
"out": "./README.md",
"scripts": "./build/readme.js",
"backup": false
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/git"
]
}
}