-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.45 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.45 KB
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
{
"name": "github-releaser",
"version": "1.6.1",
"description": "Bump version, generate changelog with issue links, commit, tag, push and create Github release, all automatically.",
"scripts": {
"coverage": "npm test >> coverage.txt",
"lint": "eslint --ignore-path .eslintignore .",
"lint-fix": "npm run lint -- --fix",
"main": "node index.js",
"release": "node index.js && npm login && npm publish",
"reset-local-tags": "git tag -l | xargs git tag -d && git fetch --tags",
"test": "jest --coverage --coverageReporters='text' --detectOpenHandles"
},
"dependencies": {
"@types/jest": "^26.0.19",
"async": "^3.2.0",
"chalk": "^4.1.0",
"conventional-changelog": "^3.1.21",
"conventional-recommended-bump": "^6.0.9",
"current-git-branch": "^1.1.0",
"dot-prop": ">=5.1.1",
"figures": "^3.2.0",
"glob": "^7.2.0",
"node-fetch": "^2.6.0",
"prompt": "^1.0.0",
"simple-git": "^2.12.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^11.0.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-node": "^4.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^1.1.2",
"jest": "^26.6.3",
"validate-commit-msg": "^2.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamtomhewitt/github-releaser.git",
"apiUrl": "https://api.github.com/repos/iamtomhewitt/github-releaser"
},
"author": "Tom Hewitt",
"license": "ISC",
"bugs": {
"url": "https://github.com/iamtomhewitt/github-releaser/issues"
},
"homepage": "https://github.com/iamtomhewitt/github-releaser#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"preferGlobal": true,
"bin": {
"github-releaser": "index.js"
},
"keywords": [
"javascript",
"automation",
"release",
"release-automation"
]
}