-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.32 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
{
"name": "react-native-realm",
"version": "0.1.1",
"description": "A higher-order component for listening to Realm data in React Native components.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonmerino/react-native-realm.git"
},
"keywords": [
"realm",
"react native",
"ios",
"android"
],
"author": "Jason Merino",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonmerino/react-native-realm/issues"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"preset": "react-native",
"testPathIgnorePatterns": [
"/node_modules/",
"/example/node_modules/"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/"
],
"modulePaths": [
"src"
],
"resetModules": true,
"notify": true
},
"homepage": "https://github.com/jasonmerino/react-native-realm#readme",
"dependencies": {
"camelcase": "4.1.0",
"hoist-non-react-statics": "1.2.0",
"pluralize": "5.0.0",
"prop-types": "15.5.10"
},
"devDependencies": {
"babel-jest": "20.0.3",
"babel-preset-react-native": "2.0.0",
"jest": "20.0.4",
"react": "15.6.1",
"react-native": "0.45.1",
"regenerator-runtime": "0.10.5"
}
}