This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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": "generator-jhipster-vmware-clarity",
"version": "1.1.0",
"description": "A JHipster module that create VMWare Clarity Design UI framework for Angular client.",
"keywords": [
"yeoman-generator",
"jhipster-module",
"jhipster-5",
"angular",
"vmware-clarity"
],
"homepage": "https://github.com/chihosin/generator-jhipster-vmware-clarity",
"author": {
"name": "Chiho Sin",
"email": "chihosin@icloud.com",
"url": "https://github.com/chihosin"
},
"files": [
"generators"
],
"main": "generators/app/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/chihosin/generator-jhipster-vmware-clarity.git"
},
"dependencies": {
"chalk": "2.1.0",
"generator-jhipster": "^5.0.0-beta.1",
"jhipster-core": "^2.0.3",
"lodash": "^4.17.10",
"mkdirp": "0.5.1",
"pluralize": "^7.0.0",
"semver": "5.3.0",
"shelljs": "0.5.3",
"yeoman-generator": "2.0.0"
},
"devDependencies": {
"eslint": "4.7.2",
"eslint-config-airbnb-base": "12.0.0",
"eslint-plugin-import": "2.7.0",
"fs-extra": "4.0.2",
"mocha": "3.5.3",
"pre-commit": "^1.2.2",
"yeoman-assert": "3.1.0",
"yeoman-test": "1.7.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/chihosin/generator-jhipster-vmware-clarity/issues"
},
"pre-commit": [
"lint"
]
}