-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "react-with-firestore",
"version": "0.1.0",
"description": "an HOC to pass data from Firestore to React Components",
"main": "./dist/index.js",
"scripts": {
"test": "",
"build":
"rm -fR ./dist/* && babel src --presets babel-preset-es2015 --plugins transform-react-jsx,transform-object-rest-spread --out-dir dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emars/react-with-firestore.git"
},
"keywords": ["Firebase", "Firestore", "React"],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/emars/react-with-firestore/issues"
},
"peerDependencies": {
"firebase": "^4.6.1",
"react": "^16.0.0"
},
"dependencies": {
"firebase": "^4.6.1",
"react": "^16.0.0"
},
"homepage": "https://github.com/emars/react-with-firestore#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1"
}
}