-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.08 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
{
"name": "contrib-subgen-react-webpack-container",
"version": "0.0.3",
"description": "A Container Subgenerator for Generator React Webpack",
"main": "generators/container/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sthzg/contrib-subgen-react-webpack-container.git"
},
"author": "@sthzg",
"license": "MIT",
"bugs": {
"url": "https://github.com/sthzg/contrib-subgen-react-webpack-container/issues"
},
"files": [
"generators/app",
"generators/container"
],
"homepage": "https://github.com/sthzg/contrib-subgen-react-webpack-container#readme",
"devDependencies": {
"acorn-jsx": "^3.0.1",
"babel-eslint": "^6.1.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"escodegen": "^1.8.0",
"escodegen-wallaby": "^1.6.7",
"eslint": "^3.0.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.2",
"fs-extra": "^0.30.0",
"generator-react-webpack": "^4.0.1-1",
"istanbul": "^0.4.4",
"lodash": "^4.13.1",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"yeoman-assert": "^2.2.1",
"yeoman-generator": "^0.23.4",
"yeoman-test": "^1.4.0"
},
"peerDependencies": {
"generator-react-webpack": ">=4.0.1-1"
},
"scripts": {
"test": "mocha",
"test:watch": "mocha -w",
"test:cover": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report html --report text",
"test:travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags"
},
"dependencies": {
"ejs": "^2.4.2",
"esformatter": "^0.9.5",
"esformatter-jsx": "^7.0.1",
"gulp-filter": "^4.0.0",
"gulp-if": "^2.0.1",
"jsonpath": "^0.2.6",
"through2": "^2.0.1"
}
}