-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.36 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
{
"name": "triviago",
"version": "1.1.0",
"description": "Game that combines trivia and capture the flag",
"main": "AndroidStudioProject/settings.gradle",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "standard-version --sign -a",
"release:minor": "standard-version --release-as minor --sign -a && npm run notif-push",
"release:patch": "standard-version --release-as patch --sign -a && npm run notif-push",
"release:major": "standard-version --release-as major --sign -a && npm run notif-push",
"notif-push": "echo '\n\n Remember to push commits and tags with \n git push && git push --tags' "
},
"standard-version": {
"scripts": {
"postbump": "git add -A"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/theophanemayaud/EPFL-LOA-TriviaGo.git"
},
"author": "Theophane Mayaud, Laurence Bongrain, Basile Spaenlehauer",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/theophanemayaud/EPFL-LOA-TriviaGo/issues"
},
"homepage": "https://github.com/theophanemayaud/EPFL-LOA-TriviaGo#readme",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"husky": "^7.0.1",
"standard-version": "^9.3.1"
}
}