forked from leecade/react-native-swiper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.32 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": "react-native-swiper",
"keywords": ["react-component", "react-native", "ios"],
"version": "1.5.5",
"description": "Swiper component for React Native.",
"main": "index.js",
"scripts": {
"start": "react-native start",
"lint": "standard | snazzy",
"update": "updtr",
"precommit": "git diff --name-only --cached --relative | grep '\\.jsx\\?$' | xargs standard | snazzy; if [ $? -ne 0 ]; then exit 1; fi",
"test": "npm run lint"
},
"pre-commit": {
"run": ["precommit"],
"silent": true
},
"standard": {
"parser": "babel-eslint",
"global": [
"__DEV__",
"FormData",
"requestAnimationFrame",
"alert",
"setImmediate",
"fetch"
],
"ignore": ["dist/", "mock/", "node_modules/"]
},
"ava": {
"babel": "inherit",
"require": []
},
"repository": {
"type": "git",
"url": "git+https://github.com/leecade/react-native-swiper.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/leecade/react-native-swiper/issues"
},
"homepage": "https://github.com/leecade/react-native-swiper#readme",
"devDependencies": {
"babel-eslint": "^7.1.1",
"rimraf": "^2.5.4",
"snazzy": "^5.0.0",
"standard": "^8.5.0",
"updtr": "^0.2.3"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}