forked from brunolemos/react-native-slider
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 976 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 976 Bytes
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-slider",
"version": "0.11.0",
"description": "A pure JavaScript <Slider /> component for react-native",
"main": "src/Slider.js",
"files": [
"src"
],
"author": "Jean Regisser <jean.regisser@gmail.com> (https://github.com/jeanregisser)",
"keywords": [
"react-component",
"react-native",
"ios",
"android",
"slider"
],
"license": "MIT",
"scripts": {
"start": "node_modules/react-native/packager/packager.sh"
},
"repository": {
"type": "git",
"url": "git@github.com:jeanregisser/react-native-slider.git"
},
"dependencies": {
"prop-types": "^15.5.6",
"style-equal": "^1.0.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^7.2.1",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"react": "16.0.0-alpha.6",
"react-native": "0.43.3",
"rimraf": "^2.5.2"
}
}