-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
36 lines (36 loc) · 975 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
36
{
"name": "react-native-sideswipe",
"version": "1.5.0",
"description": "cross-platform react native carousel with sensible defaults",
"main": "src/index.js",
"types": "types/index.d.ts",
"repository": "https://github.com/kkemple/react-native-sideswipe",
"author": "Kurtis Kemple <[email protected]>",
"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": {
"src/**/*.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"
}
}