1{ 2 "name": "@expo/config", 3 "version": "8.2.1", 4 "description": "A library for interacting with the app.json", 5 "main": "build/index.js", 6 "scripts": { 7 "watch": "tsc --watch --preserveWatchOutput", 8 "build": "tsc --emitDeclarationOnly && babel src --out-dir build --extensions \".ts\" --source-maps --ignore \"src/**/__mocks__/*\",\"src/**/__tests__/*\"", 9 "prepare": "yarn run clean && yarn build", 10 "clean": "rimraf build ./tsconfig.tsbuildinfo", 11 "lint": "eslint .", 12 "test": "jest" 13 }, 14 "repository": { 15 "type": "git", 16 "url": "https://github.com/expo/expo.git", 17 "directory": "packages/@expo/config" 18 }, 19 "keywords": [ 20 "json", 21 "react-native", 22 "expo", 23 "react" 24 ], 25 "license": "MIT", 26 "bugs": { 27 "url": "https://github.com/expo/expo/issues" 28 }, 29 "homepage": "https://github.com/expo/expo/tree/main/packages/@expo/config#readme", 30 "files": [ 31 "build", 32 "paths" 33 ], 34 "dependencies": { 35 "@babel/code-frame": "~7.10.4", 36 "@expo/config-plugins": "~7.3.0", 37 "@expo/config-types": "^49.0.0-alpha.1", 38 "@expo/json-file": "^8.2.37", 39 "getenv": "^1.0.0", 40 "glob": "7.1.6", 41 "require-from-string": "^2.0.2", 42 "resolve-from": "^5.0.0", 43 "semver": "7.5.3", 44 "slugify": "^1.3.4", 45 "sucrase": "^3.20.0" 46 }, 47 "devDependencies": { 48 "@types/require-from-string": "^1.2.1" 49 }, 50 "publishConfig": { 51 "access": "public" 52 } 53} 54