-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 944 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
{
"name": "react-native-swipe-slider",
"version": "1.0.3",
"description": "iOS brightness-style slider ready to use in your next React Native app.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "[email protected]:tomekkleszcz/react-native-swipe-slider.git",
"author": "tomekkleszcz <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"native",
"swipe",
"slider"
],
"scripts": {
"lint": "./node_modules/.bin/eslint ./src/ --ext .js,.jsx,.ts,.tsx",
"prepublish": "tsc"
},
"devDependencies": {
"@types/react-native": "^0.63.42",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.16.0",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-native": ">= 0.59.0"
}
}