-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.43 KB
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
78
79
80
{
"name": "react-native-wlkt",
"version": "1.0.0",
"description": "Simple and fully customizable walkthrough guide for your app",
"main": "index.js",
"scripts": {
"example:setup": "yarn --cwd example setup",
"jest:test": "yarn --cwd example test",
"detox:test": "detox test -c ios.sim.release",
"detox:build": "detox build -c ios.sim.release",
"detox:ci": "yarn run detox:build && yarn run detox:test --cleanup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blancham/react-native-wlkt.git"
},
"bugs": {
"url": "https://github.com/blancham/react-native-wlkt/issues"
},
"homepage": "https://github.com/blancham/react-native-wlkt#readme",
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"react native",
"mobile",
"ios",
"android",
"ui",
"ux",
"interactive",
"walkthrough",
"tutorial"
],
"author": "Maxime Blanchard",
"license": "MIT",
"dependencies": {
"prop-types": "^15.6.1"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/runtime": "^7.3.4",
"babel-eslint": "^10.0.1",
"detox": "^16.0.0",
"eslint": "^5.15.2",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^25.1.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"detox": {
"configurations": {
"ios.sim.debug": {
"binaryPath": "example/ios/build/Build/Products/Debug-iphonesimulator/example.app",
"build": "set -o pipefail; xcodebuild -workspace example/ios/example.xcworkspace -scheme example -configuration Debug -sdk iphonesimulator -derivedDataPath example/ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 8 Plus"
}
},
"ios.sim.release": {
"binaryPath": "example/ios/build/Build/Products/Release-iphonesimulator/example.app",
"build": "export RCT_NO_LAUNCH_PACKAGER=true; set -o pipefail; xcodebuild -workspace example/ios/example.xcworkspace -scheme example -configuration Release -sdk iphonesimulator -derivedDataPath example/ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 8 Plus"
}
}
},
"runner-config": "example/e2e/config.json",
"test-runner": "jest"
}
}