forked from callstack/react-native-image-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·121 lines (121 loc) · 4.87 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@react-native-community/image-editor",
"version": "2.3.0",
"description": "React Native Image Editing native modules for iOS & Android",
"main": "lib/ImageEditor.js",
"typings": "typings/index.d.ts",
"author": "Dawid Urbaniak <[email protected]>",
"contributors": [],
"homepage": "https://github.com/react-native-community/react-native-image-editor#readme",
"license": "MIT",
"keywords": [
"react-native",
"react native",
"image editor",
"imageeditor",
"image"
],
"repository": {
"type": "git",
"url": "https://github.com/react-native-community/react-native-image-editor.git"
},
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test:flow": "flow check",
"test:eslint": "eslint \"lib/**/*.js\" \"example/**/*.js\"",
"release": "release-it",
"test:detox:android:test:debug": "detox test -c android.emu.debug",
"test:detox:android:test:release": "detox test -c android.emu.release",
"test:detox:android:build:debug": "detox build -c android.emu.debug",
"test:detox:android:build:release": "detox build -c android.emu.release",
"test:detox:android:bundle:release": "mkdir -p .tmp && react-native bundle --max-workers 4 --platform android --dev false --entry-file example/index.js --bundle-output .tmp/android-bundle.js",
"test:detox:ios:test:debug": "detox test -c ios.sim.debug",
"test:detox:ios:test:release": "detox test -c ios.sim.release",
"test:detox:ios:build:debug": "detox build -c ios.sim.debug",
"test:detox:ios:build:release": "detox build -c ios.sim.release",
"test:detox:ios:bundle:release": "mkdir -p .tmp && react-native bundle --max-workers 4 --platform ios --dev false --entry-file example/index.js --bundle-output .tmp/ios-bundle.js",
"test:detox:clean": "rimraf example/android/build && rimraf example/android/app/build && rimraf example/android/.gradle && rimraf example/ios/build"
},
"peerDependencies": {
"react": ">=16.0",
"react-native": ">=0.57 <0.65"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@react-native-community/eslint-config": "^0.0.7",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "9.0.0",
"babel-jest": "24.1.0",
"babel-plugin-module-resolver": "^3.1.3",
"detox": "^12.4.9",
"eslint": "^6.8.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",
"release-it": "^10.3.1"
},
"eslintConfig": {
"extends": "@react-native-community",
"env": {
"es6": true,
"jest": true,
"node": true
},
"globals": {
"it": true,
"expect": true,
"element": true,
"describe": true,
"by": true,
"device": true,
"beforeAll": true,
"beforeEach": true,
"afterAll": true,
"jest": true,
"jasmine": true
}
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"/e2e/"
]
},
"detox": {
"test-runner": "jest",
"runner-config": "example/e2e/config.json",
"configurations": {
"ios.sim.debug": {
"binaryPath": "example/ios/build/Build/Products/Debug-iphonesimulator/ImageEditorExample.app",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -project example/ios/ImageEditorExample.xcodeproj -destination 'platform=iOS Simulator,name=iPhone X' -scheme ImageEditorExample -parallelizeTargets -configuration Debug -derivedDataPath example/ios/build -UseModernBuildSystem=YES",
"type": "ios.simulator",
"name": "iPhone X"
},
"ios.sim.release": {
"binaryPath": "example/ios/build/Build/Products/Release-iphonesimulator/ImageEditorExample.app",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -project example/ios/ImageEditorExample.xcodeproj -destination 'platform=iOS Simulator,name=iPhone X' -scheme ImageEditorExample -parallelizeTargets -configuration Release -derivedDataPath example/ios/build -UseModernBuildSystem=YES",
"type": "ios.simulator",
"name": "iPhone X"
},
"android.emu.debug": {
"binaryPath": "example/android/app/build/outputs/apk/debug/app-debug.apk",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && pushd example/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && popd",
"type": "android.emulator",
"name": "TestingAVD"
},
"android.emu.release": {
"binaryPath": "example/android/app/build/outputs/apk/release/app-release.apk",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && pushd example/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && popd",
"type": "android.emulator",
"name": "TestingAVD"
}
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}