-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
73 lines (73 loc) · 1.9 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
{
"name": "react-native-firestack",
"version": "2.3.8",
"author": "Ari Lerner <ari@fullstack.io> (https://fullstackreact.com)",
"description": "A firebase v3 adapter",
"main": "index",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"build": "./node_modules/.bin/babel --source-maps=true --out-dir=dist .",
"dev": "npm run compile -- --watch",
"lint": "eslint ./src",
"publish_pages": "gh-pages -d public/",
"test": "./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/fullstackreact/react-native-firestack.git"
},
"jest": {
"preset": "jest-react-native",
"setupFiles": [],
"unmockedModulePathPatterns": [
"./node_modules/react",
"./node_modules/react-native",
"./node_modules/react-native-mock",
"./node_modules/react-addons-test-utils"
]
},
"license": "ISC",
"keywords": [
"react",
"react-native",
"react-native-firestack",
"firestack",
"firebase"
],
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"rnpm": {
"commands": {
"prelink": "node_modules/react-native-firestack/bin/prepare.sh",
"postlink": "node_modules/react-native-firestack/bin/cocoapods.sh"
},
"ios": {
"project": "ios/Firestack.xcodeproj"
},
"android": {
"packageInstance": "new FirestackPackage()"
}
},
"devDependencies": {
"babel-jest": "^14.1.0",
"babel-preset-react-native": "^1.9.0",
"debug": "^2.2.0",
"enzyme": "^2.4.1",
"jest": "^14.1.0",
"jest-react-native": "^14.1.3",
"mocha": "^3.0.2",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-native-mock": "^0.2.6",
"react-test-renderer": "^15.3.0",
"should": "^11.1.0",
"sinon": "^2.0.0-pre.2"
},
"dependencies": {
"bows": "^1.6.0",
"es6-symbol": "^3.1.0",
"invariant": "^2.2.2"
}
}