|
@@ -5,6 +5,12 @@
|
5
|
5
|
"license": "MIT",
|
6
|
6
|
"nativePackage": true,
|
7
|
7
|
"author": "Tal Kol <talkol@gmail.com>",
|
|
8
|
+ "contributors": [
|
|
9
|
+ "Daniel Zlotin <zlotindaniel@gmail.com>",
|
|
10
|
+ "Guy Carmeli <guyc@wix.com>",
|
|
11
|
+ "Ran Greenberg <rang@wix.com>",
|
|
12
|
+ "Artal Druk <artald@wix.com>"
|
|
13
|
+ ],
|
8
|
14
|
"publishConfig": {
|
9
|
15
|
"registry": "https://registry.npmjs.org/"
|
10
|
16
|
},
|
|
@@ -20,14 +26,13 @@
|
20
|
26
|
"main": "src/index.js",
|
21
|
27
|
"scripts": {
|
22
|
28
|
"build": ":",
|
23
|
|
- "lint": "eslint src2",
|
24
|
|
- "test:js": "BABEL_ENV=test jest --coverage",
|
25
|
|
- "test:android": "cd android && ./gradlew clean testDebugUnitTest",
|
26
|
|
- "test:ios": ":",
|
27
|
|
- "pretest": "npm run lint",
|
28
|
|
- "test": "npm run test:js && npm run test:android && npm run test:ios",
|
29
|
|
- "test:watch": "BABEL_ENV=test jest --coverage --watch",
|
30
|
|
- "release": ": #npm version prerelease && npm publish --tag next && npm view react-native-navigation dist-tags && git push"
|
|
29
|
+ "lint": "eslint src",
|
|
30
|
+ "test-js": "BABEL_ENV=test jest --coverage",
|
|
31
|
+ "test-android": "cd android && ./gradlew clean testDebugUnitTest",
|
|
32
|
+ "test-ios": ":",
|
|
33
|
+ "test": "npm run lint && npm run test:js && npm run test:android && npm run test:ios",
|
|
34
|
+ "test-watch": "BABEL_ENV=test jest --coverage --watch",
|
|
35
|
+ "release": ":"
|
31
|
36
|
},
|
32
|
37
|
"peerDependencies": {
|
33
|
38
|
"react-native": "*",
|
|
@@ -68,7 +73,7 @@
|
68
|
73
|
"preset": "react-native",
|
69
|
74
|
"testPathDirs": [
|
70
|
75
|
"node_modules",
|
71
|
|
- "src2"
|
|
76
|
+ "src"
|
72
|
77
|
],
|
73
|
78
|
"resetMocks": true,
|
74
|
79
|
"resetModules": true
|