-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
63 lines (63 loc) · 1.71 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
{
"author": {
"name": "Steve Mao",
"email": "[email protected]",
"url": "https://github.com/stevemao"
},
"bin": "./src/cli.js",
"bugs": "https://github.com/conventional-changelog/conventional-commits-detector/issues",
"description": "Detect what commit message convention your repository is using.",
"engines": {
"node": ">=6.9.0"
},
"files": [
"src/"
],
"homepage": "https://github.com/conventional-changelog/conventional-commits-detector#readme",
"keywords": [
"commit-conventions",
"conventions",
"commit-message"
],
"license": "MIT",
"main": "src/index.js",
"name": "conventional-commits-detector",
"renovate": {
"extends": [
"config:base",
":maintainLockFilesWeekly",
":rebaseStalePrs",
":automergeDigest",
":gitSignOff",
":preserveSemverRanges"
]
},
"repository": {
"type": "git",
"url": "https://github.com/conventional-changelog/conventional-commits-detector.git"
},
"scripts": {
"dev": "docker run --rm --user node -v \"$(pwd)\":/app -w /app -it node:6 sh -c \"yarn install; yarn test; bash\"",
"test": "eslint src/ && nyc mocha --opts mocha.opts src/**/*.spec.js"
},
"version": "1.0.3",
"dependencies": {
"arrify": "^1.0.0",
"git-raw-commits": "^4.0.0",
"meow": "^12.0.0",
"through2-concurrent": "^2.0.0"
},
"devDependencies": {
"@hutson/conventional-changelog-config": "^2.0.0",
"@hutson/eslint-config": "^3.0.0",
"@hutson/nyc-config": "^2.0.0",
"chai": "^4.0.2",
"codecov": "^3.0.0",
"debug": "^4.0.0",
"eslint": "^5.3.0",
"mocha": "^6.0.0",
"npm-publish-git-tag": "^3.0.0",
"nyc": "^14.0.0",
"semantic-release-github": "^4.0.17"
}
}