-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
60 lines (60 loc) · 1.39 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
{
"name": "react-native-web-lottie",
"version": "1.4.4",
"description": "React Native for Web implementation of Lottie",
"main": "dist/index.js",
"main-es": "src/index.js",
"repository": {
"type": "git",
"url": "[email protected]:react-native-web-community/react-native-web-lottie.git"
},
"author": {
"name": "Louis Lagrange",
"email": "[email protected]",
"url": "https://github.com/Minishlink"
},
"license": "MIT",
"keywords": [
"react-native",
"react-native-web",
"lottie-react-native"
],
"scripts": {
"prepublish": "yarn build",
"build": "mkdir -p dist && babel src --out-dir dist --copy-files",
"test": "prettier --check ."
},
"babel": {
"presets": [
"module:metro-react-native-babel-preset"
],
"plugins": [
"react-native-web"
]
},
"files": [
"src",
"dist",
"yarn.lock"
],
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/runtime": "^7.3.1",
"babel-loader": "^8.0.5",
"babel-plugin-react-native-web": "^0.10.0",
"metro-react-native-babel-preset": "^0.51.1",
"prettier": "^2.0.5",
"react": "^16.7.0",
"react-art": "^16.7.0",
"react-dom": "^16.7.0",
"react-native-web": "^0.10.0",
"webpack": "^3.6.0"
},
"peerDependencies": {
"react-native-web": "*"
},
"dependencies": {
"lottie-web": "^5.7.1"
}
}