-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
55 lines (55 loc) · 1.26 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
{
"name": "react-native-shimmer",
"version": "0.6.0",
"description": "Simple shimmering effect in React Native",
"main": "index.js",
"scripts": {
"test": "eslint index.js",
"format": "prettier --write *.js"
},
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"mobile",
"ios",
"ui",
"shimmer",
"activityindicator",
"indeterminate",
"spinner",
"animation"
],
"author": {
"name": "Joel Arvidsson",
"email": "[email protected]"
},
"homepage": "https://github.com/oblador/react-native-shimmer",
"bugs": {
"url": "https://github.com/oblador/react-native-shimmer/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/oblador/react-native-shimmer.git"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.16.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"prop-types": "^15.6.0"
}
}