-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "react-native-images-loaded",
"version": "1.0.2",
"description": "Check if all images under a context have been loaded",
"main": "index.js",
"repository": "https://github.com/mistenkt/react-native-images-loaded",
"author": "@mistenkt",
"license": "MIT",
"private": false,
"scripts": {
"pretty": "prettier --write \"src/**/*.js\" \"__tests__/**/*.js\"",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run pretty"
]
},
"peerDependencies": {
"react": "^16.13.1",
"react-native": "^0.62.2"
},
"devDependencies": {
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.10.1",
"@testing-library/react-hooks": "^3.3.0",
"babel-jest": "^26.1.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-serial-runner": "^1.1.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-native": "^0.62.2"
}
}