forked from hsynakgul/react-native-copilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.7 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
{
"name": "@okgrow/react-native-copilot",
"version": "2.3.0",
"description": "Make an interactive step by step tour guide for you react-native app",
"main": "src/index.js",
"private": false,
"scripts": {
"lint": "eslint src/",
"test": "jest src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okgrow/react-native-copilot.git"
},
"keywords": [
"react-native",
"react-native-joyride",
"react",
"copilot",
"intro.js",
"intro"
],
"files": [
"src"
],
"author": "OK GROW! <[email protected]> (https://www.okgrow.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/okgrow/react-native-copilot/issues"
},
"homepage": "https://github.com/okgrow/react-native-copilot#readme",
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-native": "^4.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.2.1",
"jest-react-native": "^18.0.0",
"react": ">=16.0.0-alpha.3",
"react-native": ">=0.46.0",
"react-native-i18n": "1.0.0",
"react-native-svg": "^6.3.1",
"react-test-renderer": "^16.3.1"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element)"
],
"modulePathIgnorePatterns": [
"example"
],
"globals": {
"__TEST__": true
}
},
"dependencies": {
"mitt": "^1.1.3"
}
}