-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "generator-react-redux-express",
"version": "0.1.2",
"description": "Yeoman generator for using React, Redux, Express with Webpack via Babel",
"main": "generators/app/index.js",
"engines": {
"node": ">=4.0.0",
"iojs": ">=1.1.0"
},
"keywords": [
"yeoman-generator",
"react",
"es6",
"express",
"redux"
],
"scripts": {
"release:major": "npm version prerelease && git push --follow-tags && npm publish --tag beta",
"release:minor": "npm version prerelease && git push --follow-tags && npm publish --tag beta",
"release:patch": "npm version prerelease && git push --follow-tags && npm publish --tag beta"
},
"repository": {
"type": "git",
"url": "https://github.com/hihl/generator-react-redux-express.git"
},
"files": [
"generators",
"utils",
"template"
],
"author": {
"name": "Zhengfeng Yao",
"url": "https://github.com/hihl"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hihl/generator-react-redux-express/issues"
},
"homepage": "https://github.com/hihl/generator-react-redux-express#readme",
"dependencies": {
"react-redux-express": "0.1.3",
"underscore.string": "^3.3.4",
"yeoman-generator": "^0.24.1",
"yeoman-welcome": "^1.0.1"
}
}