forked from jhipster/jhipster-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.75 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
{
"name": "jhipster-core",
"version": "1.3.5",
"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",
"check-dependencies": "node ./scripts/check_dependencies.js",
"pretest": "yarn lint",
"test": "mocha test",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha test --",
"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\" && 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"
},
"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": "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": {
"lodash": "4.17.4",
"winston": "2.3.1"
},
"devDependencies": {
"chai": "4.1.1",
"eslint": "4.4.1",
"eslint-config-airbnb-base": "11.3.1",
"eslint-plugin-import": "2.7.0",
"istanbul": "0.4.5",
"mocha": "3.5.0",
"mocha-clean": "1.0.0",
"pegjs": "0.10.0"
},
"peerDependencies": {},
"engines": {
"node": ">=6.9.0",
"npm": ">=2.14.2"
}
}