-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1005 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
{
"name": "dataloader-build-tools",
"version": "5.11.2",
"description": "Extra build tools outside of Maven, including release tools and git hooks.",
"license": "AGPL-3.0",
"scripts": {
"loc": "sloc src/ --format json > ./target/site/jacoco/sloc.json",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"precommit-validate": "mvn validate",
"release": "standard-version -a",
"postrelease": "git push --follow-tags origin master"
},
"standard-version": {
"scripts": {
"postbump": "node update-pom-version.js",
"precommit": "git add pom.xml"
}
},
"pre-commit": [
"precommit-msg",
"precommit-validate"
],
"repository": {
"type": "git",
"url": "https://github.com/bullhorn/dataloader.git"
},
"bugs": {
"url": "https://github.com/bullhorn/dataloader/issues"
},
"homepage": "https://github.com/bullhorn/dataloader#readme",
"devDependencies": {
"pre-commit": "^1.2.2",
"standard-version": "^9.5.0"
}
}