-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
60 lines (60 loc) · 1.67 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
57
58
59
60
{
"name": "react-native-photos-framework",
"repository": {
"type": "git",
"url": "https://github.com/olofd/react-native-photos-framework.git"
},
"version": "1.0.8",
"description": "Use Apples Photos Framework with react-native to fetch media from CameraRoll and iCloud",
"author": "Olof Dahlbom [email protected]",
"nativePackage": true,
"license": "MIT",
"homepage": "https://github.com/olofd/react-native-photos-framework",
"keywords": [
"react-native",
"react-native-camera-roll",
"Photos Framework",
"iCloud",
"camera-roll",
"cameraroll",
"react",
"native",
"camera",
"photo",
"code"
],
"files": [
"LICENSE",
"ios/",
"src/",
"local-cli/",
"index.js",
"README.md",
"install.js",
"event-emitter.js",
"react-native-photos-framework.podspec"
],
"scripts": {
"postinstall": "node install.js",
"test": "jest",
"test-ios": "set -o pipefail && xcodebuild test -verbose -project example/ios/Example.xcodeproj -scheme Example -destination 'id=E40727B3-41FB-4D6E-B4CB-BFA87109EB12' | xcpretty",
"update": "git add . && git commit -m \"Updated\" && npm version patch && git push --tags && git push origin master && npm publish",
"update-small": "git add . && git commit -m \"Updated\" && git push origin master"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-jest": "^19.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-react-native": "^2.0.0",
"jest": "^19.0.2",
"jest-react-native": "^18.0.0",
"prop-types": "^15.5.10"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/example/",
"local-cli/"
]
}
}