-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.13 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.13 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
{
"name": "generator-jhipster-jooq",
"version": "4.1.0",
"description": "jOOQ blueprint for JHipster",
"keywords": [
"yeoman-generator",
"jhipster-blueprint",
"jhipster-8"
],
"homepage": "https://github.com/jhipster/generator-jhipster-jooq",
"bugs": {
"url": "https://github.com/jhipster/generator-jhipster-jooq/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhipster/generator-jhipster-jooq.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/generator-jhipster"
},
"license": "Apache-2.0",
"author": {
"name": "JHipster",
"url": "https://github.com/jhipster"
},
"type": "module",
"imports": {
"#test-utils": "./test/utils.mjs"
},
"bin": {
"jhipster-jooq": "cli/cli.cjs"
},
"files": [
"cli",
"generators",
"!**/__*",
"!**/*.snap",
"!**/*.spec.?(c|m)?(j|t)s"
],
"scripts": {
"ejslint": "ejslint generators/**/*.ejs",
"lint": "eslint",
"lint-fix": "npm run ejslint && npm run lint -- --fix",
"mocha": "mocha generators --no-insight --forbid-only",
"prepare": "husky",
"prettier-check": "prettier --check \"{,**/}*.{md,json,yml,html,cjs,mjs,js,cts,mts,ts,tsx,css,scss,vue,java}\"",
"prettier-format": "prettier --write \"{,**/}*.{md,json,yml,html,cjs,mjs,js,cts,mts,ts,tsx,css,scss,vue,java}\"",
"pretest": "npm run prettier-check && npm run lint",
"test": "vitest run",
"update-snapshot": "vitest run --update",
"vitest": "vitest"
},
"dependencies": {
"generator-jhipster": "9.1.0"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"ejs-lint": "2.0.1",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"globals": "17.6.0",
"husky": "^9.1.7",
"jiti": "2.7.0",
"prettier": "3.8.3",
"prettier-plugin-packagejson": "3.0.2",
"vitest": "4.1.7",
"yeoman-test": ">=10"
},
"engines": {
"generator-jhipster": "^9.1.0",
"node": "^22.18.0 || >=24.11.0"
},
"cacheDirectories": [
"node_modules"
]
}