-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2 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
{
"name": "generator-jhipster-quota",
"version": "1.0.2",
"description": "This module allows you to create entities that allow you to manage an entity creation quota for each user. All you will have to do is enter a quota for each user directly into the database. If you do not enter a quota, it will be basic unlimited for each user.",
"keywords": [
"yeoman-generator",
"jhipster-module",
"jhipster-5",
"quota"
],
"homepage": "https://github.com/contribution-jhipster-uga/generator-jhipster-quota",
"author": {
"name": "Contribution Jhipster UGA, Julien COURTIAL, Hugo GROS-DAILLON, Cédric LAFRASSE, Bastien TERRIER (https://github.com/contribution-jhipster-uga/)",
"email": "[email protected]",
"url": "https://github.com/contribution-jhipster-uga"
},
"files": [
"generators"
],
"main": "generators/app/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/contribution-jhipster-uga/generator-jhipster-quota.git"
},
"dependencies": {
"chalk": "2.4.1",
"fs": "0.0.1-security",
"generator-jhipster": ">=5.0.0",
"mkdirp": "0.5.1",
"semver": "5.3.0",
"shelljs": "^0.5.3",
"yeoman-generator": "3.1.1"
},
"devDependencies": {
"eslint": "5.1.0",
"eslint-config-airbnb-base": "13.0.0",
"eslint-plugin-import": "2.13.0",
"fs-extra": "6.0.1",
"mocha": "5.2.0",
"yeoman-assert": "3.1.1",
"yeoman-test": "2.0.0"
},
"scripts": {
"pretest": "eslint .",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"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": "mocha test"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/contribution-jhipster-uga/generator-jhipster-quota/issues"
}
}