-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.53 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
44
45
46
47
48
49
50
51
52
53
{
"name": "openapi-forge-java",
"version": "0.1.0",
"description": "OpenAPI-Forge Java template",
"apiTemplates": [
"ApiClient.java.handlebars",
"IApiClient.java.handlebars"
],
"main": "index.js",
"scripts": {
"prepare": "husky install",
"test": "npm run test:generators",
"test:generators": "node startTests.js",
"lint:check:all": "eslint .",
"lint:write:all": "eslint --fix .",
"format:check:all": "npm run format:check:java && npm run format:check:javascript",
"format:check:java": "ls",
"format:check:javascript": "prettier --check .",
"format:write:all": "npm run format:write:java && npm run format:write:javascript",
"format:write:java": "ls",
"format:write:javascript": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ScottLogic/openapi-forge-java.git"
},
"keywords": [
"openapi-forge",
"java"
],
"author": "murcikan",
"license": "MIT",
"bugs": {
"url": "https://github.com/ScottLogic/openapi-forge-java.git/issues"
},
"homepage": "https://github.com/ScottLogic/openapi-forge-java.git#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"eslint": "^8.24.0",
"eslint-plugin-prettier": "^4.2.1",
"handlebars": "^4.7.7",
"husky": "^8.0.1",
"path": "^0.12.7",
"prettier": "^2.7.1",
"prettier-plugin-java": "^2.0.0",
"semantic-release": "^19.0.5",
"shelljs": "^0.8.5"
},
"engines": {
"node": ">=16.0.0"
}
}