This repository has been archived by the owner on Mar 21, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
86 lines (86 loc) · 2.52 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
82
83
84
85
86
{
"name": "jhipster-core",
"version": "7.3.4",
"description": "JHipster's own domain language and core objects",
"main": "module/index.js",
"keywords": [
"JHipster",
"DSL",
"JDL"
],
"scripts": {
"bundle": "node ./scripts/bundle.js && webpack",
"diagrams": "node ./scripts/serialize_grammar.js && eslint lib/dsl/gen/generated_serialized_grammar.js --fix",
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix",
"posttest": "nyc --reporter=text-summary report",
"prepare": "npm run test && npm run diagrams && npm run bundle",
"release": "git push && git push --tags && npm publish",
"commit-dist": "git add dist && git add lib/dsl/gen && git commit --allow-empty -m \"Update dist\"",
"release-patch": "npm run commit-dist && npm version patch -a -m \"Update to %s\" && npm run release",
"release-minor": "npm run commit-dist && npm version minor -a -m \"Update to %s\" && npm run release",
"release-major": "npm run commit-dist && npm version major -a -m \"Update to %s\" && npm run release",
"test": "npm run lint && nyc mocha",
"test:watch": "mocha --watch --reporter min"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"{lib,module,scripts,test}/*.js": [
"prettier --write",
"git add"
]
},
"homepage": "https://github.com/jhipster/jhipster-core",
"repository": {
"type": "git",
"url": "git+https://github.com/jhipster/jhipster-core.git"
},
"author": {
"name": "Mathieu Abou-Aichi",
"email": "mathieu.abou-aichi@jhipster.tech",
"url": "https://github.com/MathieuAA"
},
"bugs": {
"url": "https://github.com/jhipster/jhipster-core/issues"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache 2.0"
}
],
"dependencies": {
"chevrotain": "7.0.1",
"fs-extra": "8.1.0",
"lodash": "4.17.19",
"winston": "3.2.1"
},
"devDependencies": {
"chai": "4.2.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-mocha": "6.3.0",
"eslint-plugin-prettier": "3.1.3",
"husky": "4.2.5",
"lint-staged": "10.1.7",
"mocha": "7.1.1",
"nyc": "15.0.1",
"prettier": "1.19.1",
"sinon": "9.0.2",
"sinon-chai": "3.5.0",
"terser-webpack-plugin": "2.3.5",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
"peerDependencies": {},
"engines": {
"node": ">=8.10.0",
"npm": ">=5.6.0"
}
}