-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.01 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.01 KB
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
{
"name": "@bacons/text-decoder",
"version": "0.0.0",
"description": "A light-weight TextDecoder polyfill for React Native Hermes that only supports utf-8",
"types": "build/index.d.ts",
"main": "src/index.ts",
"sideEffects": true,
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module"
},
"files": [
"install.js",
"build",
"src",
"!**/__tests__"
],
"repository": {
"type": "git",
"url": "https://github.com/evanbacon/text-decoder-polyfill.git"
},
"peerDependencies": {
"react-native": "*"
},
"keywords": [
"expo"
],
"author": "Evan Bacon",
"license": "MIT",
"jest": {
"preset": "expo-module-scripts/ios"
},
"devDependencies": {
"expo": "^51.0.0",
"expo-module-scripts": "^3.5.1",
"jest": "^29.7.0",
"react-native": "~0.74.1"
}
}