forked from react-native-async-storage/async-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.39 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
{
"name": "@react-native-community/async-storage",
"version": "1.6.2",
"description": "Asynchronous, persistent, key-value storage system for React Native.",
"types": "./types/index.d.ts",
"main": "lib/index.js",
"author": "Krzysztof Borowy <krizzu.dev@gmail.com>",
"contributors": [],
"homepage": "https://github.com/react-native-community/react-native-async-storage#readme",
"license": "MIT",
"keywords": [
"react-native",
"react native",
"async storage",
"asyncstorage",
"storage"
],
"repository": {
"type": "git",
"url": "https://github.com/react-native-community/react-native-async-storage.git"
},
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"start:android": "react-native run-android --root example/",
"start:ios": "react-native run-ios --project-path example/ios",
"build:e2e:ios": "detox build -c ios",
"build:e2e:android": "detox build -c android",
"test": "yarn test:lint && yarn test:flow",
"test:flow": "flow check",
"test:lint": "eslint 'lib/**/*.js' 'example/**/*.js'",
"test:e2e:ios": "detox test -c ios",
"test:e2e:android": "detox test -c android"
},
"peerDependencies": {
"react": "^16.0",
"react-native": ">=0.57"
},
"devDependencies": {
"@babel/core": "7.0.0",
"@react-native-community/eslint-config": "0.0.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.1.0",
"babel-plugin-module-resolver": "3.1.3",
"detox": "12.6.1",
"eslint": "5.1.0",
"flow-bin": "0.86.0",
"jest": "24.1.0",
"metro-react-native-babel-preset": "0.51.1",
"react": "16.6.3",
"react-native": "0.58.4",
"react-test-renderer": "16.6.3"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./example/jest.setup.js"
]
},
"detox": {
"test-runner": "jest",
"runner-config": "example/e2e/config.json",
"configurations": {
"ios": {
"binaryPath": "example/ios/build/Build/Products/Release-iphonesimulator/AsyncStorageExample.app",
"build": ".circleci/scripts/run_ios_e2e.sh \"iPhone X\"",
"type": "ios.simulator",
"name": "iPhone X"
},
"android": {
"binaryPath": "example/android/app/build/outputs/apk/release/app-release.apk",
"build": ".circleci/scripts/run_android_e2e.sh",
"type": "android.emulator",
"name": "Emu_E2E"
}
}
}
}