-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
41
42
43
{
"name": "spring-boot-dependency-checker",
"version": "0.7.1",
"description": "Spring Boot Dependency Checker - validate that you're using the versions Spring Boot has approved with your project.",
"keywords": [
"spring boot",
"managed dependencies"
],
"homepage": "https://github.com/mrbusche/spring-boot-dependency-checker",
"bugs": {
"url": "https://github.com/mrbusche/spring-boot-dependency-checker/issues/"
},
"license": "\tGPL-3.0-or-later",
"author": "Matt Busche <[email protected]>",
"main": "index.js",
"bin": {
"spring-boot-dependency-checker": "bin/spring-boot-dependency-checker"
},
"repository": {
"type": "git",
"url": "https://github.com/mrbusche/spring-boot-dependency-checker.git"
},
"scripts": {
"prettier:fix": "prettier --write .",
"test": "mocha"
},
"dependencies": {
"fast-xml-parser": "4.5.1",
"gradle-to-js": "github:mrbusche/gradle-to-js#8960d1c3f9dab922c9545289abf7b29b25a26f54",
"node-html-parser": "7.0.1"
},
"devDependencies": {
"mocha": "11.1.0",
"prettier": "3.4.2"
},
"prettier": {
"trailingComma": "all",
"printWidth": 140,
"semi": true,
"singleQuote": true
},
"type": "module"
}