-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "react-native-fading-slides",
"version": "0.3.1",
"description": "Simple looped fading slides carousel for React Native",
"main": "index.js",
"scripts": {
"postinstall": "babel index.jsx --out-file index.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write --single-quote --trailing-comma all --print-width 100",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/chagasaway/react-native-fading-slides.git"
},
"keywords": [
"react-component",
"react-native",
"slides",
"intro",
"carousel",
"ios",
"android"
],
"author": "Fellipe Chagas <chagas.0@gmail.com> (https://github.com/chagasaway)",
"license": "MIT",
"bugs": {
"url": "https://github.com/chagasaway/react-native-fading-slides/issues"
},
"homepage": "https://github.com/chagasaway/react-native-fading-slides",
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.13.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.9.1"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-es2015-constants": "^6.1.4",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-react-native": "^4.0.0"
}
}