-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 2.32 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
{
"name": "generator-jhipster-entando",
"version": "7.4.0",
"description": "Entando blueprint for generation JHipster services that function as an Entando plugin.",
"keywords": [
"yeoman-generator",
"jhipster-blueprint",
"jhipster-7"
],
"homepage": "https://entando.com",
"author": {
"name": "Entando Inc.",
"email": "[email protected]",
"url": "https://github.com/entando/"
},
"files": [
"generators"
],
"main": "generators/app/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entando/entando-blueprint"
},
"dependencies": {
"casual": "^1.6.2",
"chalk": "^4.0.0",
"generator-jhipster": "7.9.3",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"prettier": "2.7.1",
"shelljs": "^0.8.4",
"yeoman-environment": "3.4.1",
"yeoman-generator": "5.3.0"
},
"devDependencies": {
"chai": "4.3.6",
"chai-date-string": "^0.1.0",
"ejs-lint": "1.2.2",
"eslint": "8.23.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-chai-friendly": "0.7.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-mocha": "10.1.0",
"fs-extra": "10.1.0",
"mocha": "9.2.2",
"mocha-expect-snapshot": "4.0.0",
"moment": "^2.29.1",
"nyc": "^15.1.0",
"sinon": "14.0.0",
"sinon-chai": "3.7.0",
"yaml": "^1.10.0",
"yeoman-assert": "3.1.1",
"yeoman-test": "6.3.0"
},
"scripts": {
"dev:setup": "npm install -g generator-jhipster@latest yo@latest",
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix",
"prettier": "prettier --write '**/*.js'",
"pretest": "npm run lint",
"test": "nyc npm run test:unit -- test",
"test:coverage": "nyc --reporter lcov npm run test:unit -- test",
"test:unit": "mocha --exclude **/entity.spec.js",
"release": "git push && git push --tags && npm publish",
"release:patch": "npm version patch -a -m \"Update to %s\" && npm run release",
"release:minor": "npm version minor -a -m \"Update to %s\" && npm run release",
"release:major": "npm version major -a -m \"Update to %s\" && npm run release"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/entando/entando-blueprint/issues"
}
}