-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
86 lines (86 loc) · 2.16 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
{
"name": "simple-commit-message",
"description": "Simple commit message wizard and validator; works with commitizen and pre-git",
"main": "src/index.js",
"bin": {
"simple-commit-message": "bin/simple-wizard.js"
},
"version": "0.0.0-development",
"scripts": {
"ban": "node node_modules/.bin/ban",
"deps": "deps-ok && dependency-check --no-dev . --entry src/postinstall.js",
"test": "rocha src/*-spec.js",
"lint": "standard --verbose --fix bin/*.js src/*.js",
"commit": "commit-wizard",
"semantic-release": "semantic-release",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"wizard": "node bin/simple-wizard.js",
"issues": "git-issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/simple-commit-message.git"
},
"files": [
"bin",
"src/*.js",
"!src/*-spec.js"
],
"keywords": [
"commit",
"message",
"validation",
"wizard",
"pre-git",
"commitizen"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/simple-commit-message/issues"
},
"homepage": "https://github.com/bahmutov/simple-commit-message#readme",
"devDependencies": {
"ban-sensitive-files": "1.9.18",
"dependency-check": "3.4.1",
"deps-ok": "1.4.1",
"git-issues": "1.3.1",
"next-update-travis": "1.7.1",
"pre-git": "3.17.1",
"ramda": "0.28.0",
"rocha": "2.5.10",
"semantic-release": "17.4.7",
"snap-shot": "2.17.0",
"standard": "12.0.1"
},
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [
"npm run ban",
"npm run lint",
"npm test"
],
"pre-push": [
"npm run size"
],
"post-commit": [],
"post-merge": []
}
},
"dependencies": {
"check-more-types": "2.24.0",
"debug": "4.3.4",
"ggit": "2.4.12",
"hr": "0.1.3",
"inquirer": "6.5.2",
"inquirer-confirm": "2.0.7",
"largest-semantic-change": "1.1.0",
"lazy-ass": "1.6.0",
"semver": "5.7.1",
"word-wrap": "1.2.3"
},
"release": {
"analyzeCommits": "./src/index.js"
}
}