forked from lottie-react-native/lottie-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "lottie-react-native",
"version": "2.2.7",
"description": "React Native bindings for Lottie",
"main": "index.js",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"build:pods": "cd example/ios; bundle exec pod install; cd -",
"run:packager": "./node_modules/react-native/packager/packager.sh",
"run:ios": "react-native run-ios --project-path ./example/ios",
"start:android": "adb shell am start -n com.example/.MainActivity",
"run:android": "./gradlew installDebug && npm run start:android",
"lint": "eslint ./",
"ci": "npm run lint",
"publish:maven": "./gradlew clean check uploadArchives",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git fetch git@github.com:airbnb/lottie-react-native.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push git@github.com:airbnb/lottie-react-native.git gh-pages --force",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airbnb/lottie-react-native.git"
},
"keywords": [
"lottie",
"animation",
"react",
"react-native",
"keyframe"
],
"author": "Leland Richardson <leland.richardson@airbnb.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/airbnb/lottie-react-native/issues"
},
"homepage": "https://github.com/airbnb/lottie-react-native#readme",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"invariant": "^2.2.2",
"lottie-ios": "^2.1.3",
"prop-types": "^15.5.10",
"react-native-safe-module": "^1.1.0"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-plugin-module-resolver": "^2.3.0",
"babel-preset-airbnb": "^1.1.1",
"babel-preset-react-native": "1.9.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-import-resolver-babel-module": "^2.2.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^6.1.2",
"gitbook-cli": "^1.0.1",
"react": "16.0.0-alpha.12",
"react-native": "^0.47.1"
},
"rnpm": {
"android": {
"sourceDir": "./lib/android"
}
}
}