forked from hhunaid/react-native-image-crop-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "react-native-image-crop-tools",
"title": "React Native Image Crop Tools",
"version": "1.6.3",
"description": "Native image crop tools with embeddable UI and on the fly aspect ratio switchin",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json --fix",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/hhunaid/react-native-image-crop-tools.git",
"baseUrl": "https://github.com/hhunaid/react-native-image-crop-tools"
},
"keywords": [
"react-native",
"crop",
"cropping",
"image",
"rotate",
"native",
"react",
"typescript"
],
"author": {
"name": "Hunaid Hassan",
"email": "hhunaid@gmail.com"
},
"license": "MIT",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "*",
"react-native": ">=0.59.0-rc.0 <1.0.x"
},
"devDependencies": {
"react": "^16.9.0",
"react-native": "^0.61.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.7.2",
"prettier": "^1.19.1",
"@types/react-native": "^0.60.23"
}
}