forked from szaranger/firebase-saga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "firebase-saga",
"version": "1.1.1",
"description": "A library for connecting Redux saga middleware to Firebase.",
"main": "dist/ReactProxy.js",
"scripts": {
"build": "rimraf modules dist && NODE_ENV=babel-es2015 webpack && NODE_ENV=babel-es2015 babel src --out-dir modules",
"docs": "./node_modules/.bin/esdoc -c esdoc.json; open ./docs/index.html",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/szaranger/firebase-saga.git"
},
"keywords": [
"firebase",
"saga",
"redux"
],
"author": "Sean Amarasinghe <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/szaranger/firebase-saga/issues"
},
"homepage": "https://github.com/szaranger/firebase-saga#readme",
"dependencies": {
"redux-saga": "^0.11.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.21",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"esdoc": "^0.4.7",
"esdoc-es7-plugin": "0.0.3",
"expect": "^1.9.0",
"mocha": "^2.2.4",
"rimraf": "^2.4.2",
"webpack": "^1.13.1"
}
}