forked from qiwi/multi-semantic-release
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
119 lines (119 loc) · 2.92 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
{
"name": "@creaworks/multi-semantic-release",
"author": "Omer Duzyol <omer@duzyol.net>",
"version": "3.16.3",
"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": "jest --watchAll",
"jest": "TRAVIS_PULL_REQUEST_BRANCH=master jest --coverage",
"lint": "eslint ./",
"lint:fix": "eslint --fix ./",
"test": "yarn lint && yarn jest",
"test:report": "yarn test && yarn codeclimate:push && yarn coveralls:push",
"codeclimate:push": "codeclimate-test-reporter < ./coverage/lcov.info",
"coveralls:push": "cat ./coverage/lcov.info | coveralls",
"_publish": "semantic-release",
"build": "echo 'There is no need for build && exit 0'",
"postupdate": "yarn && npx yarn-audit-fix && yarn build && yarn test",
"publish:beta": "npm publish --no-git-tag-version --tag beta"
},
"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": {
"blork": "^9.3.0",
"cosmiconfig": "^7.0.0",
"debug": "^4.3.1",
"detect-indent": "^6.0.0",
"detect-newline": "^3.1.0",
"execa": "^5.0.0",
"get-stream": "^6.0.0",
"git-log-parser": "^1.2.0",
"globby": "11.0.2",
"lodash": "^4.17.20",
"meow": "^9.0.0",
"promise-events": "^0.2.2",
"semantic-release": "^17.3.7",
"semver": "^7.3.4",
"signale": "^1.4.0",
"stream-buffers": "^3.0.2",
"tempy": "^1.0.0"
},
"peerDependencies": {
"@manypkg/get-packages": "^1.1.1",
"@nrwl/workspace": "^11.2.6 || ^13.2.3",
"typescript": "^4.3.5"
},
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@manypkg/get-packages": "^1.1.1",
"@nx/workspace": "^16.10.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"codeclimate-test-reporter": "^0.5.1",
"commitlint": "^11.0.0",
"coveralls": "^3.1.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"file-url": "^3.0.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"typescript": "4.3.5"
},
"release": {
"branch": "master",
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
]
},
"repository": {
"type": "git",
"url": "https://github.com/creaworks-labs/multi-semantic-release"
}
}