-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
{
"name": "react-native-lottie-loader",
"version": "1.0.0",
"description": "Useful to show lottie animation spinners in react-native mobile applications.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint . --ext .js",
"precommit": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
".js": [
"npm run lint",
"git add ."
]
},
"peerDependencies": {
"prop-types": ">=15.7.2",
"react": "*",
"react-native": ">=0.63",
"lottie-react-native": ">=3.5.0",
"lottie-ios": ">=3.1.8"
},
"devDependencies": {
"eslint": "^7.7.0",
"eslint-config-imbudhiraja": "^1.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/imbudhiraja/react-native-lottie-loader.git"
},
"keywords": [
"loaders",
"animations",
"react-native-spinner",
"modals",
"animated",
"spinner",
"react-native-component",
"react-component",
"react-native",
"ios",
"android",
"lottie-react-native",
"react-native-progress",
"react-native-animation-loader",
"react-native-animated-loader",
"react-native-animation-spinner"
],
"author": "Manish Budhiraja",
"license": "MIT",
"bugs": {
"url": "https://github.com/imbudhiraja/react-native-lottie-loader/issues"
},
"homepage": "https://github.com/imbudhiraja/react-native-lottie-loader#readme"
}