forked from vforvasile/rn-photos-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@bthj/react-native-photos-framework",
"version": "1.0.2",
"description": "Fork from https://github.com/olofd/react-native-photos-framework with RN 0.59 issue, removed Android script, lib for IOS only",
"main": "index.js",
"directories": {
"test": "test"
},
"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/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bthj/react-native-photos-framework.git"
},
"keywords": [
"album",
"photos",
"ios",
"framework",
"pictures",
"react-native",
"cameraRoll",
"iCloud",
"react-native-camera-roll",
"Photos Framework",
"camera-roll",
"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"
],
"nativePackage": true,
"author": "bthj",
"license": "MIT",
"bugs": {
"url": "https://github.com/bthj/react-native-photos-framework/issues"
},
"homepage": "https://github.com/bthj/react-native-photos-framework#readme"
}