-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·112 lines (112 loc) · 2.64 KB
/
package.json
File metadata and controls
executable file
·112 lines (112 loc) · 2.64 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "springboot2postman",
"version": "1.1.2",
"description": "Generate Postman collections automatically from any Spring Boot project — with or without Swagger",
"main": "cli/index.js",
"bin": {
"springboot2postman": "./cli/index.js",
"springboot-postman-gen": "./cli/index.js"
},
"scripts": {
"start": "node cli/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,json,md}\"",
"format:check": "prettier --check \"**/*.{js,json,md}\"",
"prepare": "husky install",
"prepublishOnly": "npm run lint && npm test"
},
"keywords": [
"spring",
"spring-boot",
"postman",
"api",
"documentation",
"openapi",
"swagger",
"java",
"parser",
"ast",
"collection",
"rest",
"cli"
],
"author": "Guilherme March <guilhermemarch>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/guilhermemarch/springboot2postman.git"
},
"bugs": {
"url": "https://github.com/guilhermemarch/springboot2postman/issues"
},
"homepage": "https://github.com/guilhermemarch/springboot2postman#readme",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"dependencies": {
"@faker-js/faker": "^8.3.1",
"axios": "^1.6.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"glob": "^10.3.10",
"java-parser": "^2.1.0",
"js-yaml": "^4.1.0",
"openapi-to-postmanv2": "^4.19.0",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage",
"collectCoverageFrom": [
"cli/**/*.js",
"core/**/*.js",
"lib/**/*.js",
"!**/node_modules/**",
"!**/tests/**"
],
"testMatch": [
"**/tests/**/*.test.js"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 75,
"lines": 80,
"statements": 80
}
}
},
"files": [
"cli/",
"core/",
"lib/",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}