-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.86 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
{
"name": "generator-jhipster-hipselect",
"version": "0.0.0",
"description": "Replaces standard HTML 'select' elements, in Vue templates, with v-select",
"keywords": [
"yeoman-generator",
"jhipster-blueprint",
"jhipster-5",
"vue",
"v-select"
],
"homepage": "https://github.com/el95149/generator-jhipster-hipselect",
"author": {
"name": "Angelos Anagnostopoulos",
"email": "[email protected]",
"url": "https://anagnostic.org"
},
"files": [
"generators"
],
"main": "generators/app/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/el95149/generator-jhipster-hipselect.git"
},
"dependencies": {
"chalk": "2.4.1",
"generator-jhipster": "7.2.0"
},
"devDependencies": {
"chai": "4.1.2",
"ejs-lint": "0.3.0",
"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",
"sinon": "6.0.0",
"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"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/el95149/generator-jhipster-hipselect/issues"
}
}