-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "expo-community-flipper",
"version": "48.0.1",
"description": "Flipper Support for Expo Apps < SDK 48",
"main": "build/withFlipper.js",
"types": "build/withFlipper.d.ts",
"sideEffects": false,
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "tslint --project ./tsconfig.json",
"test": "expo-module test",
"release:before:init": "expo-module test; expo-module prepare; expo-module prepublishOnly",
"expo-module": "expo-module"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakobo/expo-community-flipper.git"
},
"keywords": [
"flipper",
"expo",
"eas",
"react-native",
"config-plugin"
],
"author": "Jakob Heuser <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakobo/expo-community-flipper/issues"
},
"homepage": "https://github.com/jakobo/expo-community-flipper#readme",
"devDependencies": {
"@types/semver": "^7.3.11",
"expo": ">47.0.0-beta",
"expo-module-scripts": "^2.1.1",
"jest": "^29.2.2",
"tslint": "^6.1.3",
"typescript": "^4.8.4"
},
"dependencies": {
"semver": "^7.3.8",
"ts-dedent": "^2.2.0"
},
"peerDependencies": {
"expo": ">=47.0.0-beta.0 <48"
}
}