-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.79 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.79 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "react-native-zip-archive",
"version": "8.0.1",
"description": "A TurboModule wrapper on ZipArchive for React Native's New Architecture",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint index.js",
"test:e2e:expo:ios": "./scripts/e2e-ios.sh",
"test:e2e:expo:android": "./scripts/e2e-android.sh",
"test:e2e:expo": "npm run test:e2e:expo:android && npm run test:e2e:expo:ios",
"test:e2e:rn:ios": "./scripts/e2e-ios.sh --rn",
"test:e2e:rn:android": "./scripts/e2e-android.sh --rn",
"test:e2e:rn": "npm run test:e2e:rn:android && npm run test:e2e:rn:ios",
"test:e2e": "npm run test:e2e:expo && npm run test:e2e:rn"
},
"repository": {
"type": "git",
"url": "git@github.com:mockingbot/react-native-zip-archive.git"
},
"keywords": [
"react-native",
"ios",
"android",
"zip",
"archive",
"zip-archive",
"unzip"
],
"author": "Perry Poon <plrthink@gmail.com> (https://github.com/plrthink)",
"homepage": "https://github.com/mockingbot/react-native-zip-archive",
"license": "MIT",
"devDependencies": {
"@babel/core": "*",
"@babel/preset-env": "^7.29.2",
"@react-native-community/eslint-config": "^2.0.0",
"eslint": "^6.7.2",
"jest": "^29.0.0",
"react": ">=18.0.0",
"react-native": ">=0.70.0"
},
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"<rootDir>/playground-expo/",
"<rootDir>/playground-rn/"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native)/"
]
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.70.0"
},
"codegenConfig": {
"name": "NativeZipArchiveSpec",
"type": "modules",
"jsSrcsDir": "specs",
"android": {
"javaPackageName": "com.rnziparchive"
}
}
}