-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 864 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "expresscpp",
"version": "0.20.0",
"repository": {
"type": "git",
"url": "[email protected]:expresscpp/expresscpp.git"
},
"scripts": {
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags"
},
"author": "Carlos Gomes Martinho",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"generate-changelog": "^1.8.0"
}
}