forked from jasongaare/react-native-walkthrough-tooltip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.65 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
{
"name": "react-native-walkthrough-tooltip",
"version": "0.5.3",
"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"
},
"devDependencies": {
"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",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.8.1",
"eslint-plugin-react-native": "3.2.1",
"jest": "22.4.4",
"prettier-eslint": "8.8.1",
"react": "^16.3.2",
"react-dom": "16.3.3",
"react-native": "^0.55.3"
},
"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)"
]
}
}