generated from IBM/template-java-spring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 817 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
{
"name": "inventory-management-svc",
"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",
"tdd": "./gradlew test --continuous",
"test": "./gradlew test",
"test:pact": "npm test && ./pact-validate-provider.sh ./build/pacts",
"publish:pact": "./gradlew pactPublish",
"start": "./gradlew bootRun"
},
"repository": {
"type": "git",
"url": "[email protected]:seansund/template-spring-boot.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"swagger-mock-validator": "^4.0.1"
},
"dependencies": {},
"engines": {
"node": ">= v8.11.1",
"npm": ">= 5.6.0"
}
}