forked from prescottprue/react-redux-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 4.75 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 4.75 KB
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
125
126
{
"name": "react-redux-firebase",
"version": "2.0.0",
"description": "Redux integration for Firebase. Comes with a Higher Order Components for use with React.",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"typings": "./index.d.ts",
"unpkg": "dist/react-redux-firebase.min.js",
"scripts": {
"clean": "rimraf es lib dist coverage",
"lint": "eslint src/** test/unit/** test/setup.js",
"lint:fix": "npm run lint -- --fix",
"test": "mocha -R spec ./test/unit/**",
"test:cov": "istanbul cover ./node_modules/mocha/bin/_mocha ./test/unit/**",
"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",
"prepare": "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 git@github.com:prescottprue/react-redux-firebase gh-pages --force",
"docs:upload": "node bin/api-docs-upload"
},
"license": "MIT",
"homepage": "http://react-redux-firebase.com",
"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",
"url": "https://github.com/prescottprue"
},
"keywords": [
"firebase",
"redux",
"react",
"react-redux",
"redux-firebase",
"react",
"babel",
"hoc",
"redux-react-firebase"
],
"dependencies": {
"hoist-non-react-statics": "^2.3.1",
"lodash": "^4.17.4",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^0.14.6 || ^15.0.0-0 || ^16.0.0-0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-enzyme": "^0.8.0",
"child-process-promise": "^2.2.1",
"codecov": "^2.3.0",
"cross-env": "^5.1.0",
"docdown": "^0.7.2",
"documentation": "^5.3.2",
"documentation-markdown-api-theme": "^1.0.2",
"enzyme": "^2.3.0",
"eslint": "^4.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"firebase": "^4.1.3",
"firebase-server": "^0.11.0",
"gitbook-cli": "^2.3.2",
"istanbul": "1.1.0-alpha.1",
"jsdom": "^11.3.0",
"mocha": "^3.5.3",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"recompose": "^0.26.0",
"redux": "3.6.0",
"redux-firestore": "latest",
"rimraf": "^2.6.2",
"sinon": "^3.3.0",
"sinon-chai": "^2.14.0",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"ws": "^3.2.0",
"xmlhttprequest": "^1.8.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-redux-firebase",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}