-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
91 lines (91 loc) · 2.75 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
{
"name": "generator-jhipster-react-mobx",
"version": "1.3.0",
"description": "React blueprint with Mobx for state management",
"keywords": [
"yeoman-generator",
"jhipster-blueprint",
"jhipster-7",
"React",
"Twitter Bootstrap",
"Webpack",
"Mobx"
],
"homepage": "https://github.com/erkieh/generator-jhipster-react-mobx",
"bugs": {
"url": "https://github.com/erkieh/generator-jhipster-react-mobx/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erkieh/generator-jhipster-react-mobx.git"
},
"license": "Apache-2.0",
"author": {
"name": "Erki Ehtla",
"email": "[email protected]",
"url": "https://github.com/erkieh"
},
"main": "generators/client/index.js",
"files": [
"generators"
],
"scripts": {
"lint": "eslint .",
"lint-fix": "npm run prettier:format && npm run eslint -- --fix",
"prettier:check": "prettier --check \"{,**/}*.{js,json,md,yml,java}\"",
"prettier:format": "prettier --write \"{,**/}*.{js,json,md,yml,java}\"",
"eslint": "eslint .",
"ejs-lint": "npm run test:unit -- test/ejslint.js",
"pretest": "npm run lint",
"test": "npm run test:unit -- test/**/*.spec.js test/*.spec.js --no-insight",
"test:unit": "mocha --timeout 30000 --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"
},
"dependencies": {
"chalk": "4.1.1",
"ejs": "3.1.6",
"generator-jhipster": "7.2.0",
"glob": "7.1.7",
"gulp-filter": "7.0.0",
"lodash": "4.17.21",
"mkdirp": "1.0.4",
"randexp": "0.5.3"
},
"devDependencies": {
"chai": "4.3.4",
"ejs-lint": "1.2.0",
"eslint": "7.28.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-chai-friendly": "^0.7.1",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-mocha": "9.0.0",
"eslint-plugin-prettier": "3.4.0",
"expect": "26.6.2",
"fs-extra": "10.0.0",
"jsdoc": "3.6.7",
"mocha": "8.4.0",
"mocha-expect-snapshot": "1.1.1",
"proxyquire": "2.1.3",
"sinon": "11.1.1",
"sinon-chai": "3.7.0",
"yeoman-assert": "3.1.1",
"yeoman-test": "6.1.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"engines": {
"node": ">=12.12.0",
"npm": ">=6.14.4"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/generator-jhipster",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}