1{ 2 "name": "@expo/html-elements", 3 "version": "0.2.2", 4 "description": "Universal semantic HTML React components for iOS, Android, web, and desktop", 5 "main": "build/Elements.js", 6 "types": "build/Elements.d.ts", 7 "sideEffects": false, 8 "scripts": { 9 "build": "expo-module build", 10 "clean": "expo-module clean", 11 "lint": "expo-module lint", 12 "test": "yarn test:babel && yarn test:src", 13 "test:src": "expo-module test", 14 "test:babel": "jest --config babel/jest.config.js", 15 "prepare": "expo-module prepare", 16 "prepublishOnly": "expo-module prepublishOnly", 17 "expo-module": "expo-module" 18 }, 19 "keywords": [ 20 "expo", 21 "expo-web", 22 "react-native", 23 "react-native-web", 24 "html" 25 ], 26 "repository": { 27 "type": "git", 28 "url": "https://github.com/expo/expo.git", 29 "directory": "packages/html-elements" 30 }, 31 "bugs": { 32 "url": "https://github.com/expo/expo/issues" 33 }, 34 "author": "650 Industries, Inc.", 35 "license": "MIT", 36 "homepage": "https://github.com/expo/expo/tree/main/packages/html-elements", 37 "jest": { 38 "projects": [ 39 { 40 "preset": "jest-expo/ios", 41 "modulePathIgnorePatterns": ["<rootDir>/babel/"] 42 }, 43 { 44 "preset": "jest-expo/android", 45 "modulePathIgnorePatterns": ["<rootDir>/babel/"] 46 }, 47 { 48 "preset": "jest-expo/web", 49 "modulePathIgnorePatterns": ["<rootDir>/babel/"] 50 } 51 ] 52 }, 53 "devDependencies": { 54 "expo-module-scripts": "^3.0.0" 55 } 56} 57