forked from callstack/async-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.73 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
{
"name": "@callstack/async-storage",
"version": "1.0.0",
"description": "Cross platform storage for React Native and Web, built on top of React Native",
"main": "lib",
"files": [
"src/index.android.js",
"src/index.ios.js",
"src/index.js",
"src/index.mobile.js",
"src/types.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/callstack-io/react-native-cross-platform-storage.git"
},
"bugs": {
"url": "https://github.com/callstack-io/react-native-cross-platform-storage/issues"
},
"homepage": "https://github.com/callstack-io/react-native-cross-platform-storage#readme",
"author": "Mike Grabowski <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint src",
"flow": "flow src",
"build": "cpx \"src/*.js\" lib && babel src/index.js -o lib/index.js",
"jest": "jest",
"test": "flow src && eslint src && jest"
},
"dependencies": {
"lodash.merge": "^4.6.0"
},
"peerDependencies": {
"react-native": "^0.38"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.0.0",
"babel-jest": "21.0.2",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.0",
"babel-preset-flow": "6.23.0",
"cpx": "1.5.0",
"eslint": "4.7.0",
"eslint-config-callstack-io": "0.4.1",
"flow-bin": "0.54.1",
"jest": "21.1.0"
},
"jest": {
"setupFiles": [
"./jest/setup.js"
]
},
"eslintConfig": {
"extends": "callstack-io",
"rules": {
"import/no-unresolved": 0
},
"settings": {
"import/resolver": {
"node": {
"extensions": [
".js",
".android.js",
".ios.js"
]
}
}
}
}
}