forked from Azure/generator-jhipster-azure-spring-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.8 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
{
"name": "generator-jhipster-azure-spring-apps",
"version": "0.0.0",
"private": true,
"description": "Azure Spring Apps Application",
"keywords": [
"yeoman-generator",
"jhipster-blueprint",
"jhipster-7"
],
"license": "UNLICENSED",
"type": "module",
"imports": {
"#test-utils": "./test/utils.mjs"
},
"bin": {
"jhipster-azure-spring-apps": "cli/cli.mjs"
},
"files": [
"cli",
"generators"
],
"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-format": "prettier --write \"{,**/}*.{md,json,yml,html,js,cjs,mjs,ts,tsx,css,scss,vue,java}\"",
"prettier:check": "prettier --check \"{,src/**/}*.{md,json,yml,html,js,ts,tsx,css,scss,vue,java}\"",
"prettier:format": "prettier --write \"{,src/**/}*.{md,json,yml,html,js,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",
"mocha": "9.2.2",
"mocha-expect-snapshot": "4.0.0",
"prettier": "2.7.1",
"prettier-plugin-java": "1.6.2",
"prettier-plugin-packagejson": "2.2.18",
"yeoman-test": "6.3.0"
},
"engines": {
"node": ">=16.13.0"
},
"cacheDirectories": [
"node_modules"
]
}