1{
2  "name": "expo-dev-client-components",
3  "version": "1.0.0",
4  "description": "Shared JS components and configuration for expo-dev-client",
5  "main": "build/index.js",
6  "scripts": {
7    "build": "expo-module build",
8    "clean": "expo-module clean",
9    "lint": "expo-module lint",
10    "test": "jest .",
11    "prepare": "expo-module prepare",
12    "prepublishOnly": "expo-module prepublishOnly",
13    "expo-module": "expo-module"
14  },
15  "keywords": [
16    "react-native",
17    "expo",
18    "expo-dev-client-components"
19  ],
20  "repository": {
21    "type": "git",
22    "url": "https://github.com/expo/expo.git",
23    "directory": "packages/expo-dev-client-components"
24  },
25  "bugs": {
26    "url": "https://github.com/expo/expo/issues"
27  },
28  "author": "650 Industries, Inc.",
29  "license": "MIT",
30  "homepage": "https://docs.expo.dev/versions/latest/sdk/module-template",
31  "dependencies": {
32    "@expo/styleguide-native": "^1.0.1",
33    "expo-module-scripts": "^2.0.0"
34  },
35  "devDependencies": {
36    "@testing-library/jest-native": "^4.0.4",
37    "@testing-library/react-native": "^8.0.0"
38  },
39  "jest": {
40    "preset": "@testing-library/react-native",
41    "setupFilesAfterEnv": [
42      "@testing-library/jest-native/extend-expect",
43      "./setupTests.js"
44    ]
45  }
46}
47