-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 878 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": "test-java-spring",
"version": "1.0.0",
"description": "Spring Boot application",
"main": "index.js",
"scripts": {
"build": "./gradlew assemble",
"verify": "./gradlew check",
"verify:pact": "./gradlew pactVerify",
"clean": "./gradlew clean",
"test": "./gradlew test",
"test:pact": "yarn test && ./pact-validate-provider.sh ./build/pacts",
"publish:pact": "./gradlew pactPublish",
"start": "yarn start:liberty",
"start:tomcat": "./gradlew bootRun",
"start:liberty": "./gradlew libertyRun"
},
"repository": {
"type": "git",
"url": "git@github.ibm.com:seansund/template-spring-boot.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"swagger-mock-validator": "^4.0.1",
"yarn": "^1.17.3"
},
"dependencies": {},
"engines": {
"node": ">= v8.11.1",
"npm": ">= 5.6.0"
}
}