forked from jhipster/generator-jhipster-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.88 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
87
88
89
90
91
92
{
"name": "generator-jhipster-nodejs",
"version": "2.0.0",
"description": "A NodeJS blueprint that creates the backend using NodeJS with NestJS framework",
"keywords": [
"yeoman-generator",
"jhipster-blueprint",
"jhipster-7",
"nodejs"
],
"homepage": "https://github.com/jhipster/generator-jhipster-nodejs",
"bugs": {
"url": "https://github.com/jhipster/generator-jhipster-nodejs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhipster/generator-jhipster-nodejs.git"
},
"license": "Apache-2.0",
"author": {
"name": "Angelo Manganiello",
"email": "[email protected]",
"url": "https://github.com/amanganiello90"
},
"contributors": [
"Deepu KS <[email protected]> (https://deepu105.github.io)",
"Hadi Rasouli (https://github.com/hadirsa)",
"Iván García Sainz-Aja (https://github.com/ivangsa)",
"Daniel Franco <[email protected]> (https://github.com/DanielFran)"
],
"main": "generators/app/index.js",
"bin": {
"nhipster": "./cli/nhipster.js"
},
"files": [
"generators",
"cli"
],
"scripts": {
"ejs-lint": "npm run test:unit -- test/ejslint.js",
"ejslint": "ejslint",
"eslint": "eslint . --no-eslintrc --config .generator.eslintrc.json ",
"jsdoc": "jsdoc --configure jsdoc-conf.json",
"lint": "npm run eslint && npm run ejs-lint",
"lint-fix": "npm run prettier:format && npm run eslint -- --fix",
"prettier:format": "prettier --write \"{,**/}*.{js,json,md,yml}\"",
"sonar:scanner": "sonar-scanner",
"pretest": "npm run lint",
"test": "npm run test:unit -- test/*.spec.js",
"test:unit": "nyc --reporter=lcov mocha --timeout 20000 --slow 0"
},
"pre-commit": [
"lint"
],
"dependencies": {
"chalk": "2.4.2",
"commander": "2.20.0",
"ejs": "2.6.1",
"generator-jhipster": "7.0.1",
"lodash": "4.17.21",
"meow": "5.0.0",
"semver": "6.1.1",
"shelljs": "0.8.4"
},
"devDependencies": {
"chai": "4.2.0",
"ejs-lint": "0.3.0",
"eslint": "6.0.0-alpha.2",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-prettier": "3.1.0",
"fs-extra": "8.0.1",
"glob": "7.1.4",
"jsdoc": "3.6.3",
"mocha": "6.1.4",
"nyc": "15.0.0",
"pre-commit": "1.2.2",
"prettier": "1.17.1",
"sinon": "7.3.2",
"sonarqube-scanner": "2.5.0",
"yeoman-assert": "3.1.1",
"yeoman-test": "5.1.0"
},
"peerDependencies": {
"yeoman-environment": "3.2.0"
},
"engines": {
"node": ">=8.10.0",
"npm": ">=5.6.0"
}
}