forked from prescottprue/react-redux-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 4.83 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "react-redux-firebase",
"version": "1.5.0",
"description": "Redux integration for Firebase. Comes with a Higher Order Component for use with React.",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"typings": "./index.d.ts",
"scripts": {
"clean": "rimraf es lib dist coverage",
"lint": "eslint src/** tests/**/**",
"lint:fix": "npm run lint -- --fix",
"test": "mocha -R spec --compilers js:babel-core/register ./tests/setup.js ./tests/** --recursive",
"test:cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- ./tests/setup.js ./tests/** --recursive --report lcov --compilers js:babel-core/register",
"codecov": "cat coverage/*/lcov.info | codecov",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js dist/react-redux-firebase.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/react-redux-firebase.min.js",
"build:size": "cross-env SIZE=true BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/react-redux-firebase.min.js",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"watch": "npm run build:commonjs -- --watch",
"prepublish": "npm run clean && npm run build",
"prepush": "npm run lint",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:api": "node bin/api-docs-generate",
"docs:build": "npm run docs:prepare && gitbook build -g prescottprue/react-redux-firebase && npm run docs:api",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push [email protected]:prescottprue/react-redux-firebase gh-pages --force"
},
"license": "MIT",
"homepage": "https://github.com/prescottprue/react-redux-firebase#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/prescottprue/react-redux-firebase.git"
},
"bugs": {
"url": "https://github.com/prescottprue/react-redux-firebase/issues"
},
"author": {
"name": "Prescott Prue",
"email": "[email protected]",
"url": "https://github.com/prescottprue"
},
"keywords": [
"firebase",
"redux",
"react",
"react-redux",
"redux-firebase",
"react",
"babel",
"hoc",
"redux-react-firebase"
],
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-redux-firebase",
"logo": "https://opencollective.com/opencollective/logo.txt"
},
"dependencies": {
"es6-promise": "^4.1.0",
"firebase": "^3.9.0",
"hoist-non-react-statics": "^2.2.2",
"immutable": "^3.8.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.4",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^0.14.6 || ^15.0.0-0 || ^16.0.0-0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-es6-promise": "^1.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"codecov": "^2.1.0",
"cross-env": "^1.0.7",
"docdown": "^0.7.2",
"documentation": "^4.0.0-beta15",
"documentation-markdown-api-theme": "^1.0.2",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.0.0",
"eslint-config-standard-react": "^4.3.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"firebase-server": "^0.10.1",
"gitbook-cli": "^2.3.0",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"redux": "3.6.0",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"webpack": "^2.6.1",
"webpack-bundle-analyzer": "^2.3.1",
"ws": "^3.0.0",
"xmlhttprequest": "^1.8.0"
}
}