-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 956 Bytes
/
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
{
"name": "react-native-better-buttons",
"version": "1.2.1",
"description": "Base buttons for React Native. Ripple effect, cancel on move away, long press",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"lib/**/*\"",
"lint": "eslint"
},
"dependencies": {
"react": "^16.13.1",
"react-native": "^0.63.2"
},
"devDependencies": {
"@types/node": "^14.6.4",
"@types/react": "^16.9.49",
"@types/react-native": "^0.63.15",
"eslint": "^7.8.1",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
},
"files": [
"lib/**/*",
"license.txt"
],
"types": "lib/index.d.ts",
"keywords": [
"react-native",
"ripple",
"long-press",
"move-cancel",
"dimensions",
"button"
],
"repository": {
"type": "git",
"url": "git://github.com/jordanwilking/react-native-better-buttons.git"
},
"author": "Jordan Wilking",
"license": "MIT"
}