forked from kristw/gh-conventional-release
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "@tobikodata/circleci-gh-conventional-release",
"version": "0.1.11",
"description": "Creates a new GitHub Release following Conventional Commits",
"bin": "bin/createRelease.js",
"scripts": {
"test": "jest",
"test-ci": "jest test --env=jsdom --testResultsProcessor ./node_modules/jest-sonar-reporter/index.js",
"typecheck": "tsc --allowJs --checkJs --noEmit ./bin/createRelease.js",
"lint": "standard",
"release": "npx github:escaletech/releaser --update-package-json --gpg-sign"
},
"repository": {
"type": "git",
"url": "git+https://github.com/izeigerman/circleci-gh-conventional-releases.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/izeigerman/circleci-gh-conventional-releases/issues"
},
"homepage": "https://github.com/izeigerman/circleci-gh-conventional-releases#readme",
"dependencies": {
"@octokit/rest": "^17.11.0",
"chalk": "^4.1.0",
"node-notifier": ">=8.0.1",
"semver": "^7.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"jest": "^26.1.0",
"jest-sonar-reporter": "^2.0.0",
"standard": "^16.0.4",
"typescript": "^3.9.6"
},
"standard": {
"env": [
"jest"
]
},
"jestSonar": {
"reportPath": ".",
"reportFile": "sonar-report.xml",
"indent": 4
}
}