-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
49 lines (49 loc) · 1.35 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
{
"name": "react-native-image-cropper",
"version": "0.0.0-semantically-release",
"description": "Crop image in React Native using pan to move, pinch to zoom -> capture to file or base64",
"main": "src/index.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "eslint .",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/stoffern/react-native-image-cropper.git"
},
"keywords": [
"imagecropper",
"image",
"crop",
"react-native",
"gl-react-native",
"image-croppper"
],
"author": "Kristoffer Klevenberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/stoffern/react-native-image-cropper/issues"
},
"homepage": "https://github.com/stoffern/react-native-image-cropper#readme",
"dependencies": {
"eslint": "^4.8.0",
"eslint-plugin-react": "^7.4.0",
"gl-react": "^2.3.1",
"gl-react-native": "git://github.com/gre/gl-react-native-v2.git#10d3dce593080301dc12e467cd5e1c3d22995167",
"prop-types": "^15.6.0",
"rect-clamp": "^0.0.0",
"rect-crop": "^0.0.0"
},
"devDependencies": {
"cz-conventional-changelog": "^2.0.0",
"semantic-release": "^8.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}