-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
75 lines (75 loc) · 2.24 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
73
74
75
{
"name": "react-native-fb-collage",
"version": "1.0.7",
"description": "Image Grid or Collage component for React Native",
"main": "built/index.js",
"types": "built/index.d.ts",
"scripts": {
"prepare": "rimraf built && tsc",
"start": "tsc -w --outDir demo/built",
"release:major": "node ./changelog --major && npm version major && git push origin && git push origin --follow-tags",
"release:minor": "node ./changelog --minor && npm version minor && git push origin && git push origin --follow-tags",
"release:patch": "node ./changelog --patch && npm version patch && git push origin && git push origin --follow-tags",
"release:version": "node ./changelog --version $VERSION && git push origin && git push origin --follow-tags",
"validate": "yarn flow"
},
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react-native-collage",
"react-native-fb-collage",
"react native",
"react native collage",
"react native image grid",
"react",
"mobile",
"ios",
"android",
"ui",
"image",
"collage",
"grid"
],
"repository": {
"type": "git",
"url": "git+https://github.com/meharbhutta/react-native-fb-collage.git"
},
"author": "Muhammad Mehar <[email protected]> (https://twitter.com/meharbhutta)",
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/meharbhutta/react-native-fb-collage/issues"
},
"homepage": "https://github.com/meharbhutta/react-native-fb-collage#readme",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@types/react": "*",
"@types/react-native": "*",
"flow-bin": "^0.105.2",
"generate-changelog": "1.8.0",
"husky": "3.0.3",
"idx": "2.5.6",
"minimist": "1.2.0",
"pre-commit": "1.2.2",
"prettier": "^1.18.2",
"react": "*",
"react-native": "*",
"rimraf": "2.6.3",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.13.0",
"typescript": "^2.9.2",
"simple-git": "1.124.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}