-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.77 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
{
"name": "jhipster-core",
"version": "1.4.6",
"description": "JHipster's own domain language and core objects",
"main": "module/index.js",
"keywords": [
"JHipster",
"DSL",
"JDL"
],
"scripts": {
"lint": "eslint .",
"lint-fix": "yarn lint -- --fix",
"test": "yarn lint && nyc mocha test",
"test:watch": "mocha test --watch --reporter min",
"posttest": "yarn coverage",
"coverage": "nyc --reporter=text-summary report",
"peg-parse": "pegjs -o lib/dsl/pegjs_parser.js lib/dsl/grammar.txt",
"prepublish": "yarn peg-parse && yarn test",
"release": "git push && git push --tags && npm publish",
"release-patch": "npm version patch -a -m \"Update to %s\" && yarn release",
"release-minor": "npm version minor -a -m \"Update to %s\" && yarn release",
"release-major": "npm version major -a -m \"Update to %s\" && yarn release"
},
"homepage": "https://github.com/jhipster/jhipster-core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jhipster/jhipster-core.git"
},
"author": {
"name": "Mathieu Abou-Aichi",
"email": "[email protected]",
"url": "https://github.com/MathieuAA"
},
"bugs": {
"url": "https://github.com/jhipster/jhipster-core/issues"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache 2.0"
}
],
"dependencies": {
"lodash": "4.17.5",
"winston": "2.4.0"
},
"devDependencies": {
"chai": "4.1.2",
"eslint": "4.18.1",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-mocha": "4.11.0",
"eslint-plugin-import": "2.9.0",
"nyc": "11.4.1",
"mocha": "5.0.1",
"mocha-clean": "1.0.0",
"pegjs": "0.10.0"
},
"peerDependencies": {},
"engines": {
"node": ">=6.9.0",
"npm": ">=2.14.2"
}
}