forked from jhipster/jhipster-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.39 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.39 KB
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
87
{
"name": "jhipster-core",
"version": "3.3.2",
"description": "JHipster's own domain language and core objects",
"main": "module/index.js",
"keywords": [
"JHipster",
"DSL",
"JDL"
],
"scripts": {
"bundle": "rm -rf ./dist && webpack",
"coverage": "nyc --reporter=text-summary report",
"diagrams": "node ./scripts/serialize_grammar.js && eslint lib/dsl/gen/generated_serialized_grammar.js --fix",
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix",
"posttest": "npm run coverage",
"prepare": "npm run test && npm run diagrams && npm run bundle",
"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",
"test": "npm run lint && nyc mocha test",
"test:watch": "mocha test --watch --reporter min"
},
"husky": {
"hooks": {
"pre-commit": "npm test && lint-staged",
"pre-push": "yarn coverage"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
]
},
"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.aa@free.fr",
"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": "3.7.4",
"fs-extra": "7.0.0",
"lodash": "4.17.10",
"winston": "3.0.0"
},
"devDependencies": {
"chai": "4.1.2",
"eslint": "5.5.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "3.0.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-mocha": "5.2.0",
"eslint-plugin-prettier": "2.6.2",
"husky": "1.0.0-rc.13",
"lint-staged": "7.2.2",
"mocha": "5.2.0",
"mocha-clean": "1.0.0",
"nyc": "13.0.1",
"prettier": "1.14.2",
"sinon": "6.1.5",
"sinon-chai": "3.2.0",
"uglifyjs-webpack-plugin": "1.3.0",
"webpack": "4.17.1",
"webpack-cli": "3.1.0"
},
"peerDependencies": {},
"engines": {
"node": ">=8.10.0",
"npm": ">=5.6.0"
}
}