forked from kkemple/react-native-sideswipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 936 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
{
"name": "react-native-sideswipe",
"version": "0.0.6",
"description": "simple react native carousel with sensible defaults",
"main": "src/index.js",
"repository": "https://github.com/kkemple/react-native-sideswipe",
"author": "Kurtis Kemple <kurtiskemple@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"precommit": "lint-staged",
"flow": "glow",
"lint": "prettier --single-quote --trailing-comma=es5 --write \"src/**/*.js\"",
"contrib:add": "all-contributors add",
"contrib:build": "all-contributors generate"
},
"lint-staged": {
"scr/**/*.js": [
"yarn lint"
]
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"all-contributors-cli": "^4.10.1",
"flow-bin": "^0.64.0",
"glow": "^1.1.2",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2",
"react": "^16.2.0",
"react-native": "^0.52.2"
}
}