forked from tailosoft/jhipster-primeng-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 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
58
59
60
61
62
63
64
65
66
{
"name": "generator-jhipster-primeng-blueprint",
"version": "7.0.4",
"description": "This blueprint generated code that uses primeng components instead of bootstrap ones",
"keywords": [
"yeoman-generator",
"jhipster-blueprint",
"jhipster-5"
],
"homepage": "https://github.com/elhoutico/jhipster-primeng-blueprint",
"author": {
"name": "Youssef El Houti",
"email": "[email protected]",
"url": "https://elhouti.com"
},
"files": [
"generators"
],
"main": "generators/app/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/elhoutico/jhipster-primeng-blueprint.git"
},
"dependencies": {
"ajv": "^7.2.4",
"chalk": "2.4.1",
"generator-jhipster": "7.0.1",
"lodash": "4.17.10",
"mkdirp": "0.5.1",
"pluralize": "7.0.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",
"rimraf": "^3.0.0",
"sinon": "6.0.0",
"yeoman-assert": "3.1.1",
"yeoman-environment": "3.2.0",
"yeoman-test": "5.1.0"
},
"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/yelhouti/generator-jhipster-primeng-blueprint/issues"
}
}