-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
79 lines (79 loc) · 2.27 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
{
"name": "react-firebase",
"version": "2.2.8",
"description": "React bindings for Firebase",
"author": "Unfold <[email protected]> (http://github.com/unfold)",
"license": "MIT",
"scripts": {
"lint": "eslint '{src,scripts,tests}/**/*.js'",
"test": "node -r babel-register $(npm bin)/tape tests/**/*-test.js",
"test:coverage": "node -r babel-register $(npm bin)/isparta cover $(npm bin)/tape -- src/**/*-test.js",
"clean": "node -e 'console.log(require(\"./package\").files.join(\"\\n\"))' | xargs rm",
"build": "babel src --ignore tests --out-dir .",
"postbuild": "node -r babel-register scripts/build-umd.js",
"prepublish": "npm run build",
"postpublish": "npm run clean",
"precommit": "lint-staged"
},
"unpkg": "umd.js",
"repository": {
"type": "git",
"url": "https://github.com/unfold/react-firebase.git"
},
"bugs": {
"url": "https://github.com/unfold/react-firebase/issues"
},
"files": [
"index.js",
"Provider.js",
"connect.js",
"utils.js",
"umd.js"
],
"keywords": [
"react",
"reactjs",
"firebase"
],
"lint-staged": {
"{src,scripts,tests}/**/*.js": [
"prettier --trailing-comma es5 --single-quote --no-semi --print-width 100 --write",
"git add"
]
},
"homepage": "https://github.com/unfold/react-firebase",
"devDependencies": {
"@unfold/babel-preset": "^1.0.2",
"@unfold/eslint-config": "^1.3.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.7.4",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.18.0",
"eslint": "^3.10.2",
"eslint-plugin-react": "^6.7.1",
"firebase": "^3.6.1",
"husky": "^0.13.3",
"isparta": "^4.0.0",
"jsdom": "^9.8.3",
"jsdom-global": "^2.1.0",
"lint-staged": "^3.4.2",
"prettier": "^1.3.1",
"react": "^0.14.8 || ^15.0.0",
"react-addons-test-utils": "^0.14.8 || ^15.0.0",
"react-dom": "^0.14.8 || ^15.0.0",
"tape": "^4.5.1",
"webpack": "^2.5.1"
},
"dependencies": {
"prop-types": "^15.5.8",
"shallowequal": "^1.0.2"
},
"peerDependencies": {
"firebase": "^3.6.1 || ^4.0.0",
"react": "^0.14.8 || ^15.0.0 || ^16.0.0"
}
}