forked from leecade/react-native-swiper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.49 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-native-swiper",
"keywords": [
"react-component",
"react-native",
"ios"
],
"version": "1.6.0-rc.2",
"description": "Swiper component for React Native.",
"main": "index.js",
"scripts": {
"commit": "npx git-cz",
"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": "MIT",
"bugs": {
"url": "https://github.com/leecade/react-native-swiper/issues"
},
"homepage": "https://github.com/leecade/react-native-swiper#readme",
"devDependencies": {
"babel-eslint": "^8.0.1",
"rimraf": "^2.5.4",
"snazzy": "^7.1.0",
"standard": "^13.0.1",
"updtr": "^2.0.0"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}