-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
64 lines (64 loc) · 1.98 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
64
{
"name": "@miblanchard/react-native-slider",
"version": "2.6.0",
"description": "A pure JavaScript <Slider /> component for react-native",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"contributors": [
"Jean Regisser <jean.regisser@gmail.com> (https://github.com/jeanregisser)",
"Michael Blanchard <michael.james.blanchard@gmail.com (https://github.com/miblanchard)>"
],
"keywords": [
"react-component",
"react-native",
"ios",
"android",
"slider"
],
"license": "MIT",
"scripts": {
"build": "patch-package && tsc",
"clean": "rimraf lib",
"lint": "eslint --fix --cache --cache-location ./node_modules/.cache/eslint .",
"prepublish": "yarn clean && yarn build",
"postpublish": "./tagLatest.js && git push && git push --tags",
"storybook": "start-storybook --config-dir .storybook",
"test": "patch-package && yarn lint && yarn typescript",
"typescript": "tsc --pretty --noEmit",
"version": "git add -A"
},
"repository": {
"type": "git",
"url": "git@github.com:miblanchard/react-native-slider.git"
},
"peerDependencies": {
"react": ">=16.8",
"react-native": ">=0.59"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@react-native-community/eslint-config": "3.0.1",
"@storybook/react": "6.3.8",
"@types/react": "17.0.26",
"@types/react-native": "0.65.2",
"babel-loader": "8.2.2",
"eslint": "7.32.0",
"patch-package": "6.4.7",
"prettier": "2.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.65.1",
"react-native-web": "0.17.5",
"rimraf": "3.0.2",
"typescript": "4.4.3"
},
"resolutions": {
"kind-of": "6.0.3",
"prismjs": "1.24.0",
"set-value": "2.0.1"
},
"packageManager": "yarn@3.4.1"
}