-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.19 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
{
"name": "je-jest-helper",
"version": "1.0.1",
"description": "helpers to make jest tests run",
"main": "index.js",
"scripts": {
"test": "test",
"release:major": "./node_modules/.bin/generate-changelog -M && git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\" && npm version major && git push origin && git push origin --tags",
"release:minor": "./node_modules/.bin/generate-changelog -m && git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\" && npm version minor && git push origin && git push origin --tags",
"release:patch": "./node_modules/.bin/generate-changelog -p && git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\" && npm version patch && git push origin && git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasedwards/je-jest-helper.git"
},
"keywords": [
"jest"
],
"author": "Jason Edwards <[email protected]> (https://github.com/jasedwards)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasedwards/je-jest-helper/issues"
},
"homepage": "https://github.com/jasedwards/je-jest-helper#readme",
"devDependencies": {
"generate-changelog": "^1.8.0"
}
}