-
Notifications
You must be signed in to change notification settings - Fork 185
/
Copy pathpackage.json
67 lines (67 loc) · 1.58 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": "react-native-walkthrough-tooltip",
"version": "1.6.0",
"description": "An inline wrapper for calling out React Native components via tooltip",
"main": "src/tooltip.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasongaare/react-native-walkthrough-tooltip.git"
},
"author": "Jason Gaare",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasongaare/react-native-walkthrough-tooltip/issues"
},
"homepage": "https://github.com/jasongaare/react-native-walkthrough-tooltip#readme",
"keywords": [
"react",
"react-native",
"walkthrough",
"tooltip",
"popover"
],
"dependencies": {
"prop-types": "^15.6.1",
"react-fast-compare": "^2.0.4"
},
"devDependencies": {
"@react-native-community/eslint-config": "0.0.5",
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-jest": "22.4.4",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.4",
"eslint": "4.19.1",
"jest": "22.4.4",
"react": "^16.3.2",
"react-dom": "16.3.3",
"react-native": "^0.55.3"
},
"peerDependencies": {
"@types/react": ">=16.8.24"
},
"jest": {
"preset": "react-native",
"collectCoverageFrom": [
"src/**.js"
],
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"./jest.setup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native)"
]
}
}