forked from dhoulb/multi-semantic-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 1.93 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
{
"name": "multi-semantic-release",
"author": "Dave Houlbrooke <[email protected]>",
"version": "0.0.0-semantically-released",
"license": "0BSD",
"engines": {
"node": ">=10.18",
"yarn": ">=1.0.0"
},
"main": "lib/multiSemanticRelease.js",
"bin": {
"multi-semantic-release": "./bin/cli.js"
},
"files": [
"README.md",
"CHANGELOG.md",
"lib",
"bin"
],
"scripts": {
"watch": "TRAVIS_PULL_REQUEST_BRANCH=master jest --watchAll",
"jest": "TRAVIS_PULL_REQUEST_BRANCH=master jest --coverage",
"lint": "eslint ./",
"lint:fix": "eslint --fix ./",
"test": "yarn lint && yarn jest",
"publish": "semantic-release"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"testURL": "http://localhost",
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/test/fixtures"
]
},
"dependencies": {
"@manypkg/get-packages": "^1.1.1",
"blork": "^9.2.2",
"cosmiconfig": "^7.0.0",
"debug": "^4.3.1",
"detect-indent": "^6.0.0",
"detect-newline": "^3.1.0",
"execa": "^4.1.0",
"get-stream": "^6.0.0",
"git-log-parser": "^1.2.0",
"globby": "11.0.2",
"lodash": "^4.17.21",
"meow": "^8.0.0",
"promise-events": "^0.2.1",
"semantic-release": "^17.3.0",
"semver": "^7.3.2",
"signale": "^1.4.0",
"stream-buffers": "^3.0.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"commitlint": "^11.0.0",
"coveralls": "^3.1.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"file-url": "^3.0.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"tempy": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dhoulb/multi-semantic-release.git"
},
"bugs": {
"url": "https://github.com/dhoulb/multi-semantic-release/issues"
}
}