forked from prescottprue/react-redux-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 5.01 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
125
126
127
128
129
130
131
132
133
{
"name": "react-redux-firebase",
"version": "2.2.6",
"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/** ./bin/** ./test/**/*.js",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\"",
"test": "mocha -R spec ./test/unit/**",
"test:cov": "istanbul cover $(npm 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",
"watch:es": "npm run build:es -- --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 [email protected]: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.11",
"prop-types": "^15.6.2"
},
"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-module-resolver": "^3.1.1",
"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": "^3.1.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-prettier": "^2.3.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-prettier": "^2.1.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"firebase": "4.12.0",
"firebase-server": "^0.12.0",
"gitbook-cli": "^2.3.2",
"husky": "^0.14.3",
"istanbul": "1.1.0-alpha.1",
"jsdom": "^11.10.0",
"mocha": "^3.5.3",
"prettier": "1.10.2",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"recompose": "^0.26.0",
"redux": "4.0.0",
"redux-firestore": "0.5.7",
"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"
}
}