-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 931 Bytes
/
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
{
"name": "release-task",
"version": "1.1.1",
"description": "Version bump, update changelog, commit changes, push and deploy GIT projects by running single task script",
"main": "index.js",
"scripts": {
"release": "node ./scripts/release.js",
"format": "prettier --write \"**/*.{js,jsx,json,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrianorsouza/release-task.git"
},
"keywords": [
"semver",
"task-release",
"release",
"version",
"bump"
],
"author": "Adriano Rosa",
"license": "MIT",
"bugs": {
"url": "https://github.com/adrianorsouza/release-task/issues"
},
"homepage": "https://github.com/adrianorsouza/release-task#readme",
"dependencies": {
"chalk": "^2.4.2",
"dayjs": "^1.8.25",
"inquirer": "^7.1.0",
"run-series": "^1.1.8",
"semver": "^6.3.0"
},
"devDependencies": {
"prettier": "^2.0.4"
}
}