forked from jasonheecs/ubuntu-server-setup
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 924 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
{
"name": "ubuntu-server-setup",
"version": "1.4.0",
"description": "Bash setup script for Ubuntu servers",
"directories": {
"test": "tests"
},
"scripts": {
"test": "./tests/tests.sh",
"shellcheck": "bash -c 'shopt -s globstar; shellcheck ./*.sh; shellcheck ./tests/*.sh'",
"release": "standard-version",
"new_release": "python3 custom_scripts/release.py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/engineervix/ubuntu-server-setup.git"
},
"author": "Victor Miti",
"license": "MIT",
"bugs": {
"url": "https://github.com/engineervix/ubuntu-server-setup/issues"
},
"homepage": "https://github.com/engineervix/ubuntu-server-setup#readme",
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"standard-version": "^9.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}