-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 940 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
42
{
"name": "react-native-cached-gallery-viewer",
"version": "0.0.1",
"description": "A cached gallery viewer for React Native",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"reformat": "crn reformat-batch",
"lint-staged": "lint-staged",
"precommit": "lint-staged"
},
"dependencies": {
"react-native-cached-image": "^1.3.4",
"react-timer-mixin": "^0.13.3",
"prop-types": "^15.5.10"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-calvium": "^0.3.0",
"flow-bin": "^0.45.0",
"husky": "^0.13.3",
"lint-staged": "^3.4.1"
},
"peerDependencies": {
"react": ">=15.x",
"react-native": ">=0.45"
},
"lint-staged": {
"src/**/*.js": [
"reformat",
"git add"
]
},
"keywords": [
"react-native",
"image",
"cached",
"gallery"
],
"author": "Pablo Carrillo",
"license": "ISC"
}