-
Notifications
You must be signed in to change notification settings - Fork 356
/
package.json
75 lines (75 loc) · 2.06 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
{
"name": "generator-react-webpack",
"version": "4.0.1-1",
"description": "Yeoman generator for using React with Webpack via Babel",
"keywords": [
"yeoman-generator",
"react",
"reactjs",
"webpack",
"scaffold",
"framework",
"component",
"frontend",
"front-end",
"app"
],
"homepage": "https://github.com/react-webpack-generators/generator-react-webpack#readme",
"bugs": "https://github.com/react-webpack-generators/generator-react-webpack/issues",
"author": {
"name": "Simon Bailey",
"email": "[email protected]",
"url": "https://github.com/newtriks"
},
"contributors": [
{
"name": "Christian Schilling",
"email": "[email protected]",
"url": "https://github.com/weblogixx"
}
],
"main": "generators/app/index.js",
"files": [
"generators/app",
"generators/component",
"utils"
],
"repository": {
"type": "git",
"url": "https://github.com/react-webpack-generators/generator-react-webpack.git"
},
"scripts": {
"test": "istanbul cover _mocha",
"test:watch": "mocha -w",
"coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"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"
},
"dependencies": {
"acorn": "^4.0.3",
"escodegen": "^1.8.1",
"esformatter": "^0.9.6",
"esprima": "^3.1.1",
"esprima-walk": "^0.1.0",
"jsonpath": "^0.2.7",
"react-webpack-template": "^2.0.1-6",
"underscore.string": "^3.2.2",
"yeoman-generator": "^0.24.0",
"yeoman-welcome": "^1.0.1"
},
"devDependencies": {
"chai": "^3.2.0",
"coveralls": "^2.11.12",
"fs-extra": "^0.30.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.0",
"yeoman-assert": "^2.1.1",
"yeoman-test": "^1.0.0"
},
"engines": {
"node": ">=4.0.0",
"iojs": ">=1.1.0"
},
"license": "MIT"
}