-
Notifications
You must be signed in to change notification settings - Fork 913
/
package.json
127 lines (127 loc) Β· 3.54 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "conventional-changelog-lint",
"version": "1.1.2",
"description": "Lint commit messages against a conventional-changelog preset and ruleset",
"main": "distribution/index.js",
"files": [
"distribution"
],
"bin": {
"conventional-changelog-lint": "distribution/cli.js"
},
"scripts": {
"start": "npm run watch",
"build": "babel source --out-dir distribution",
"watch": "npm run build -- --watch",
"commit": "git-cz",
"commitmsg": "node distribution/cli.js --edit",
"changelog": "conventional-changelog --preset angular --infile changelog.md --same-file --output-unreleased",
"push": "git push && git push --tags && hub release create \"v$npm_package_version\" --message=\"v$npm_package_version\n$(conventional-changelog -p angular)\" && npm publish",
"pretest": "npm run lint",
"test": "ava",
"lint": "xo *.js",
"commitlint": "node distribution/cli.js --from=HEAD~1",
"preversion": "npm run build && npm test",
"release": "npm version --no-git-tag-version $(conventional-recommended-bump -p angular)",
"version": "npm run changelog && git add .",
"postversion": "git commit -m \"chore(release): v$npm_package_version\n$(conventional-changelog -p angular)\" && git tag -a v$npm_package_version -m \"$(conventional-changelog -p angular)\""
},
"ava": {
"babel": "inherit",
"require": [
"babel-register",
"babel-polyfill"
]
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 4
}
}
],
"stage-0"
],
"plugins": [
"add-module-exports",
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog-lint"
}
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marionebl/conventional-changelog-lint.git"
},
"bugs": {
"url": "https://github.com/marionebl/conventional-changelog-lint/issues"
},
"homepage": "https://github.com/marionebl/conventional-changelog-lint#readme",
"keywords": [
"conventional",
"conventional-changelog",
"log",
"changelog",
"lint",
"check"
],
"author": {
"name": "Mario Nebl",
"email": "hello@herebecode.com"
},
"license": "MIT",
"devDependencies": {
"ava": "0.18.2",
"babel-cli": "6.18.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.20.0",
"babel-preset-env": "1.2.1",
"babel-preset-stage-0": "6.16.0",
"conventional-changelog-cli": "1.2.0",
"conventional-recommended-bump": "0.3.0",
"cz-conventional-changelog-lint": "0.1.3",
"execa": "0.6.0",
"git-toplevel": "1.1.1",
"mz": "2.6.0",
"path-exists": "3.0.0",
"rimraf": "2.6.1",
"unexpected": "10.20.0",
"xo": "0.17.1"
},
"dependencies": {
"babel-cli": "6.18.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-polyfill": "6.20.0",
"babel-preset-es2015-node4": "2.1.0",
"babel-preset-stage-0": "6.16.0",
"babel-runtime": "6.23.0",
"chalk": "1.1.3",
"conventional-changelog-angular": "1.3.0",
"conventional-changelog-lint-config-angular": "0.4.0",
"conventional-commits-parser": "1.3.0",
"denodeify": "1.2.1",
"franc": "2.0.0",
"get-stdin": "5.0.1",
"git-raw-commits": "1.1.2",
"lodash": "4.17.4",
"meow": "3.7.0",
"pos": "0.4.2",
"rc": "1.1.7"
}
}