-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 960 Bytes
/
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
{
"name": "picache",
"version": "1.0.13",
"description": "A React Native component to automatically cache images.",
"types": "lib/Picache.d.ts",
"main": "lib/Picache",
"scripts": {
"build": "rm ./lib/* && tsc",
"pre": "rm ./lib/* && tsc && npm version patch"
},
"repository": {
"type": "git",
"url": "https://github.com/benawad/Picache"
},
"bugs": {
"url": "https://github.com/benawad/Picache/issues"
},
"homepage": "https://github.com/benawad/Picache",
"author": "Ben Awad",
"license": "MIT",
"files": [
"lib"
],
"dependencies": {
"shorthash": "^0.0.2"
},
"devDependencies": {
"@types/expo": "^25.0.0",
"@types/react": "^16.0.40",
"@types/react-native": "^0.52.16",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.9.0",
"tslint-react": "^3.5.1",
"typescript": "^2.7.2"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}