forked from mockingbot/react-native-zip-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 KB
/
package.json
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
{
"name": "react-native-zip-archive",
"version": "3.0.1",
"description": "A little wrapper on ZipArchive for react-native",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint:js": "eslint index.js"
},
"repository": {
"type": "git",
"url": "[email protected]:plrthink/react-native-zip-archive.git"
},
"keywords": [
"react-native",
"ios",
"android",
"zip",
"archive",
"zip-archive",
"unzip"
],
"author": "Perry Poon <[email protected]> (https://github.com/plrthink)",
"homepage": "https://github.com/mockingbot/react-native-zip-archive",
"license": "MIT",
"rnpm": {
"ios": {
"sharedLibraries": [
"libz"
]
}
},
"devDependencies": {
"eslint": "^4.7.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"react": "^15.4.2 || <= 16.3.1",
"react-native": ">0.39.0"
},
"peerDependencies": {
"react": "^15.4.2 || <= 16.3.1",
"react-native": ">0.39.0"
}
}