1{ 2 "name": "@expo/env", 3 "version": "0.0.2", 4 "description": "hydrate environment variables from .env files into process.env", 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/env" 18 }, 19 "keywords": [], 20 "license": "MIT", 21 "bugs": { 22 "url": "https://github.com/expo/expo/issues" 23 }, 24 "homepage": "https://github.com/expo/expo/tree/main/packages/@expo/env#readme", 25 "files": [ 26 "build" 27 ], 28 "dependencies": { 29 "dotenv": "~16.0.3", 30 "dotenv-expand": "~10.0.0", 31 "chalk": "^4.0.0", 32 "debug": "^4.3.4" 33 }, 34 "devDependencies": { 35 "@babel/core": "^7.15.5" 36 }, 37 "publishConfig": { 38 "access": "public" 39 } 40} 41