-
Notifications
You must be signed in to change notification settings - Fork 399
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "@ptomasroos/react-native-multi-slider",
"version": "2.2.2",
"description": "Android and iOS supported pure JS slider component with multiple markers for React Native",
"main": "MultiSlider.js",
"types": "index.d.ts",
"scripts": {
"prettier": "prettier --write \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ptomasroos/react-native-multi-slider.git"
},
"keywords": [
"react-native-multi-slider",
"react-component",
"react-components",
"react",
"native",
"slider",
"multiple",
"react-native",
"component",
"ios",
"android"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/prettier --single-quote --trailing-comma all --bracket-spacing --write",
"git add"
]
},
"author": "Tomas Roos <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3"
},
"bugs": {
"url": "https://github.com/ptomasroos/react-native-multi-slider/issues"
},
"homepage": "https://github.com/ptomasroos/react-native-multi-slider#readme",
"dependencies": {}
}