-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.74 KB
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
70
71
72
73
74
{
"name": "react-native-tips",
"version": "0.0.4",
"description": "Helper to show tips when you launch your react-native for the first time",
"main": "index.js",
"scripts": {
"test": "jest",
"test:dev": "yarn test -- --watch"
},
"bugs": {
"url": "https://github.com/frichti/react-native-tips/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/frichti/react-native-tips"
},
"keywords": [
"reactnative",
"react-native",
"tips",
"tooltip"
],
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
],
"moduleFileExtensions": [
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"moduleDirectories": [
"node_modules"
],
"testMatch": [
"**/*.test.js"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@storybook/addon-actions": "^3.3.13",
"@storybook/addon-links": "^3.3.13",
"@storybook/addons": "^3.3.13",
"@storybook/react": "^3.3.13",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.2.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-react-native": "^3.2.1",
"jest": "^22.2.1",
"jest-react-native": "^18.0.0",
"react-test-renderer": "^16.2.0"
},
"peerDependencies": {
"react": "^16.2.0",
"react-native": "^0.53.0",
"react-test-renderer": "^16.2.0",
"react-mixin": "^4.0.0",
"react-timer-mixin": "^0.13.3",
"styled-components": "^3.1.6"
},
"dependencies": {
"prop-types": "^15.6.0"
}
}