forked from prescottprue/generator-react-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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
{
"name": "generator-react-firebase",
"version": "1.0.3",
"description": "Starter that uses React and Firebase (with option for Redux)",
"main": "generators/index.js",
"scripts": {
"prepublish": "npm run lint",
"lint": "eslint generators",
"lint:fix": "npm run lint -- --fix",
"test": "mocha -R spec --compilers js:babel-core/register ./test/setup.js ./test/**/*.spec.js",
"test:cov": "babel-node $(npm bin)/isparta cover --report lcov ./node_modules/mocha/bin/_mocha -- ./test/** --recursive",
"codecov": "cat coverage/*/lcov.info | codecov",
"prepush": "npm run lint:fix"
},
"dependencies": {
"chalk": "^1.1.3",
"yeoman-generator": "^0.24.1",
"yosay": "^1.2.1"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.16.0",
"codecov": "^1.0.1",
"eslint": "^3.8.1",
"eslint-config-standard": "^6.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-promise": "^3.3.1",
"eslint-plugin-react": "^6.5.0",
"eslint-plugin-standard": "^2.0.1",
"fs-extra": "^0.30.0",
"husky": "^0.11.9",
"isparta": "^4.0.0",
"mocha": "^3.1.2",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.5.1"
},
"homepage": "github.com/prescottprue/generator-react-firebase",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/prescottprue/generator-react-firebase.git"
},
"author": {
"name": "Scott Prue",
"email": "[email protected]",
"url": "https://github.com/prescottprue"
},
"keywords": [
"react",
"redux",
"firebase",
"react-firebase",
"redux-firebase",
"react-redux-firebase",
"webpack",
"es6",
"generator-react",
"generator-redux",
"yeoman-generator"
],
"files": [
"generators"
]
}