-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "rn-relay-cache-manager",
"version": "0.1.1",
"description": "An implementation of the RelayCacheManager for local data caching in React Native",
"main": "dist/src/index.js",
"scripts": {
"build": "rm -rf dist/* && babel . --out-dir dist --ignore node_modules,dist",
"flow": "flow check src/",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/helielson/rn-relay-cache-manager.git"
},
"keywords": [
"relay",
"react-native",
"cache",
"relay-cache-manager",
"AsyncStorage"
],
"author": "Helielson Santos",
"license": "MIT",
"bugs": {
"url": "https://github.com/helielson/rn-relay-cache-manager/issues"
},
"homepage": "https://github.com/helielson/rn-relay-cache-manager#readme",
"peerDependencies": {
"react-native": "^0.40.0",
"react-relay": "^0.10.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "7.2.3",
"babel-preset-flow": "6.23.0",
"babel-preset-react-native": "4.0.0",
"eslint": "3.15.0",
"eslint-plugin-react": "6.10.3",
"flow-bin": "0.42.0",
"react-relay": "0.10.0"
}
}