forked from jhipster/generator-jhipster-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.4 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "generator-jhipster-native",
"version": "1.3.2",
"description": "JHipster SpringBoot Native Blueprint",
"keywords": [
"yeoman-generator",
"jhipster-blueprint",
"jhipster-7"
],
"homepage": "https://github.com/jhipster/generator-jhipster-native",
"bugs": "https://github.com/jhipster/generator-jhipster-native/issues",
"repository": {
"type": "git",
"url": "git://github.com/jhipster/generator-jhipster-native.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/generator-jhipster"
},
"license": "Apache-2.0",
"author": "Marcelo Shima <[email protected]> (https://github.com/mshima)",
"type": "module",
"imports": {
"#test-utils": "./test/utils.mjs"
},
"bin": {
"jhipster-native": "cli/cli.mjs"
},
"files": [
"cli",
"generators",
"lib",
"!**/__*",
"!**/*.snap",
"!**/*.spec.?(c|m)js"
],
"scripts": {
"ejslint": "ejslint generators/**/*.ejs && ejslint generators/**/*.ejs -d '&'",
"lint": "eslint .",
"lint-fix": "npm run ejslint && npm run lint -- --fix",
"mocha": "mocha generators --no-insight --forbid-only",
"prettier-check": "prettier --check \"{,**/}*.{md,json,yml,html,js,cjs,mjs,ts,tsx,css,scss,vue,java}\"",
"prettier-format": "prettier --write \"{,**/}*.{md,json,yml,html,js,cjs,mjs,ts,tsx,css,scss,vue,java}\"",
"pretest": "npm run prettier-check && npm run lint",
"test": "npm run mocha --",
"update-snapshot": "npm run mocha -- --no-parallel --updateSnapshot"
},
"dependencies": {
"chalk": "4.1.2",
"generator-jhipster": "7.9.3"
},
"devDependencies": {
"ejs-lint": "1.2.2",
"eslint": "8.23.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-mocha": "10.1.0",
"eslint-plugin-prettier": "4.2.1",
"expect": "28.1.3",
"husky": "7.0.2",
"lint-staged": "11.0.0",
"mocha": "9.2.2",
"mocha-expect-snapshot": "4.0.0",
"prettier": "2.7.1",
"prettier-plugin-java": "1.6.1",
"prettier-plugin-packagejson": "2.2.15",
"yeoman-test": "6.3.0"
},
"engines": {
"node": ">=16.13.0"
},
"cacheDirectories": [
"node_modules"
],
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/generator-jhipster",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}