forked from airbnb/native-navigation
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.75 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
{
"name": "native-navigation",
"version": "0.2.1",
"description": "Native Navigation for React Native",
"main": "index.js",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"run:packager": "./node_modules/react-native/scripts/packager.sh",
"run:ios": "react-native run-ios --project-path ./example/ios",
"start:android": "adb shell am start -n com.airbnb.android.react.navigation.example/.MainActivity",
"run:android": "./gradlew installDebug && npm run start:android",
"lint": "eslint ./",
"build": "npm run build:js && npm run build:android && npm run build:ios",
"build:js": "exit 0",
"build:ios": "bundle install --binstubs ./examples/ios && bundle exec pod install --project-directory=./example/ios/",
"build:android": "./gradlew :native-navigation:assembleDebug",
"ci": "npm run lint",
"publish:pod": "exit 0",
"publish:maven": "exit 0",
"publish:mavenold": "cd lib/android/ && ./gradlew clean check uploadArchives && cd -",
"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 https://github.com/airbnb/native-navigation.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/native-navigation.git gh-pages --force",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taxfix/native-navigation.git"
},
"keywords": [],
"author": "Leland Richardson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/airbnb/native-navigation/issues"
},
"homepage": "https://github.com/airbnb/native-navigation#readme",
"peerDependencies": {
"react": ">=15.3.1",
"react-native": ">=0.42"
},
"dependencies": {
"prop-types": "15.6.0",
"react-native-safe-module": "1.2.0"
},
"devDependencies": {
"babel-eslint": "8.0.3",
"babel-plugin-module-resolver": "3.0.0",
"babel-preset-airbnb": "2.4.0",
"babel-preset-react-native": "4.0.0",
"eslint": "4.13.1",
"eslint-config-airbnb": "16.1.0",
"eslint-import-resolver-babel-module": "4.0.0-beta.3",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prefer-object-spread": "1.2.1",
"eslint-plugin-react": "7.5.1",
"gitbook-cli": "2.3.2",
"murmur2js": "1.0.0",
"react": "16.2.0",
"react-native": "0.51.0"
},
"rnpm": {
"android": {
"sourceDir": "./lib/android"
}
}
}