-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.57 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
50
51
52
53
54
55
56
{
"name": "react-native-resource-saving-container",
"version": "1.0.2",
"description":
"View container that saves resources (bitmaps, camera) by detaching native views when they are not visible",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"precommit": "lint-staged"
},
"main": "ResourceSavingContainer.js",
"files": ["README.md", "ResourceSavingContainer.js"],
"repository": {
"type": "git",
"url":
"git+https://github.com/SoftwareMansion/react-native-resource-saving-container.git"
},
"author": {
"email": "[email protected]",
"name": "Krzysztof Magiera"
},
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url":
"https://github.com/SoftwareMansion/react-native-resource-saving-container/issues"
},
"homepage":
"https://github.com/SoftwareMansion/react-native-resource-saving-container#readme",
"dependencies": {},
"peerDependencies": {
"react": "> 15.0.0",
"react-native": ">= 0.47.0"
},
"jest": {
"preset": "jest-react-native"
},
"devDependencies": {
"babel-jest": "16.0.0",
"babel-preset-react-native": "1.9.0",
"husky": "^0.14.3",
"jest": "16.0.2",
"jest-react-native": "16.0.0",
"lint-staged": "^4.0.3",
"prettier": "^1.7.0",
"react-test-renderer": "15.3.2",
"react": "^16.0.0",
"react-native": "^0.50.1"
},
"lint-staged": {
"*.js": [
"prettier --write --print-width 80 --tab-width 2 --single-quote --jsx-bracket-same-line=true --trailing-comma=es5",
"git add"
]
}
}