-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
105 lines (105 loc) · 2.83 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
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "generator-jhipster-multitenancy",
"version": "2.1.2",
"description": "A JHipster blueprint for creating multitenant applications",
"keywords": [
"yeoman-generator",
"jhipster-blueprint",
"jhipster-5",
"Java",
"Spring",
"Spring Boot",
"Spring Security",
"JPA",
"Angular",
"Tenant",
"Multitenancy"
],
"homepage": "https://github.com/sonalake/generator-jhipster-multitenancy",
"bugs": {
"url": "https://github.com/sonalake/generator-jhipster-multitenancy/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Sonalake",
"email": "[email protected]",
"url": "https://github.com/sonalake"
},
"contributors": [
{
"name": "Jonathan Duggan",
"email": "[email protected]",
"url": "https://github.com/jduggan83"
},
{
"name": "Marcelo Shima",
"email": "[email protected]",
"url": ""
},
{
"name": "Mairead McCabe",
"email": "[email protected]",
"url": "https://github.com/maireadmccabe"
},
{
"name": "Gordon McGuire",
"email": "[email protected]",
"url": "https://github.com/gordonmcg"
},
{
"name": "Alessia Iorio",
"email": "[email protected]",
"url": "https://github.com/alessiaio"
},
{
"name": "Charlotte Fawsitt",
"email": "[email protected]",
"url": "https://github.com/CharlotteFawsitt"
}
],
"files": [
"generators"
],
"main": "generators/app/index.js",
"repository": {
"type": "git",
"url": "git://github.com/sonalake/generator-jhipster-multitenancy.git"
},
"dependencies": {
"chalk": "2.4.1",
"debug": "^4.1.1",
"generator-jhipster": "6.3.1",
"lodash": "4.17.10",
"pluralize": "7.0.0",
"prettier": "1.13.5"
},
"devDependencies": {
"eslint": "5.0.0",
"eslint-config-airbnb-base": "13.0.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-prettier": "3.0.0",
"fs-extra": "6.0.1",
"jsdoc": "3.5.5",
"mocha": "5.2.0",
"prettier": "1.14.3",
"yeoman-assert": "3.1.1",
"yeoman-test": "1.7.2"
},
"scripts": {
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"test": "npm run test:unit -- test/*.spec.js",
"test:unit": "mocha --timeout 20000 --slow 0 --reporter spec",
"jsdoc": "jsdoc --configure jsdoc-conf.json",
"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"
},
"engines": {
"node": ">=6.9.0",
"npm": ">=2.14.2"
}
}