-
-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
70 lines (70 loc) · 2.14 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "generator-jhipster-kotlin",
"version": "1.16.0",
"description": "A Kotlin based JHipster (KHipster)",
"keywords": [
"kotlin",
"java",
"hipster",
"yeoman-generator",
"jhipster-blueprint",
"jhipster-8"
],
"homepage": "https://github.com/jhipster/jhipster-kotlin#readme",
"bugs": {
"url": "https://github.com/jhipster/jhipster-kotlin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhipster/jhipster-kotlin"
},
"license": "Apache-2.0",
"author": "Sendil Kumar N <[email protected]> (https://sendilkumarn.com)",
"type": "module",
"bin": {
"khipster": "cli/cli.cjs"
},
"files": [
"cli",
"generators",
"!**/__*",
"!**/*.snap",
"!**/*.spec.?(c|m)js"
],
"scripts": {
"ejslint": "ejslint generators/**/*.ejs",
"lint": "eslint .",
"lint-fix": "npm run ejslint && npm run lint -- --fix",
"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": {
"execa": "^9.3.0",
"generator-jhipster": "8.6.0",
"jhipster-7-templates": "npm:[email protected]",
"mem-fs-editor": "^11.0.1",
"p-transform": "^4.1.5"
},
"devDependencies": {
"ejs-lint": "2.0.0",
"eslint": "9.5.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"fs-extra": "^11.2.0",
"globals": "15.6.0",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"prettier": "3.3.2",
"vitest": "1.6.0",
"yeoman-test": ">=8.2.0"
},
"engines": {
"generator-jhipster": "8.6.0",
"node": "^18.19.0 || >= 20.6.1"
}
}