forked from UdaySravanK/RNSwipeButton
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.65 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
{
"name": "rn-swipe-button",
"version": "1.3.2",
"description": "react native swipe/slide button component",
"main": "index.js",
"scripts": {
"test": "echo \\\"Error: no test specified\\\" && exit 1",
"lint": "eslint .",
"format": "prettier --write 'src/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UdaySravanK/RNSwipeButton.git"
},
"keywords": [
"react-native-swipe-button",
"swipe-button",
"rn-swipe-button",
"swipeable-button",
"swipeable",
"swipe",
"slide-to-unlock",
"slide-button",
"react-native-slide-button",
"react-native-slide",
"swipe-to-unlock",
"rn-slide-button",
"right-to-left-swipe-button",
"right-to-left-slide-button",
"swipe-right-to-left",
"swipe-left-to-right",
"slide"
],
"author": "Uday Sravan Kumar Kamineni",
"license": "MIT",
"bugs": {
"url": "https://github.com/UdaySravanK/RNSwipeButton/issues"
},
"homepage": "https://github.com/UdaySravanK/RNSwipeButton#readme",
"devDependencies": {
"@react-native-community/eslint-config": "^0.0.5",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"metro-react-native-babel-preset": "^0.56.0",
"pretty-quick": "^2.0.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-prettier": "^1.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0"
},
"peerDependencies": {
"react": "16.8.6",
"react-native": "0.60.5"
},
"types": "./types.d.ts",
"husky": {
"hooks": {
"pre-commit": "yarn format && git add ."
}
}
}