-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.02 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.02 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "react-native-logging-tools",
"title": "React Native library created to ease logging",
"version": "1.3.0",
"main": "src/index.ts",
"typings": "index.d.ts",
"scripts": {
"prettier:fix": "prettier --config ./.prettierrc.js --write --check \"src/**/*.ts\" ",
"lint": "tslint -p tsconfig.json 'src/**/*.tsx' 'src/**/*.ts'",
"lint:fix": "tslint -p tsconfig.json --fix 'src/**/*.tsx' 'src/**/*.ts'",
"precommit": "yarn run prettier:fix && yarn run lint:fix && yarn run tsc",
"test": "TZ=UTC jest",
"testu": "TZ=UTC node_modules/.bin/jest --updateSnapshot --i",
"tsc": "tsc"
},
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react native",
"hybrid",
"mobile",
"ios",
"android",
"logging",
"analytics",
"typescript"
],
"author": "Imran Mentese & Martin VanLerberghe",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/imranMnts/react-native-logging-tools/issues"
},
"homepage": "https://github.com/imranMnts/react-native-logging-tools#readme",
"peerDependencies": {
"@adobe/react-native-acpcore": ">=1.2.4",
"@adobe/react-native-acpanalytics": ">=1.1.6",
"@react-native-firebase/analytics": ">=6.0.0",
"@react-native-firebase/app": ">=6.0.0",
"@react-native-firebase/crashlytics": ">=6.0.0",
"@sentry/react-native": ">=1.3.0",
"instabug-reactnative": ">=9.0.0",
"react": "^16.8.1",
"react-native": ">=0.60.0-rc.0 <1.0.x",
"react-native-flipper": ">=0.50.0",
"reactotron-react-native": ">=4.0.0",
"reactotron-redux": ">=3.0.0",
"tealium-react-native": ">=2.0.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.8.3",
"babel-jest": "^25.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"jest": "^25.1.0",
"react": "16.13.1",
"react-dom": "^16.13.0",
"react-native": "0.63.0",
"react-native-flipper": "^0.50.0",
"reactotron-react-native": "4.0.2",
"reactotron-redux": "^3.1.2",
"ts-jest": "^25.0.0",
"tslint": "^6.0.0",
"tslint-config-airbnb-base": "^0.3.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.2.0",
"typescript": "^3.7.3"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"preset": "react-native",
"setupFiles": [
"./jest.setup.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"\\.(js|jsx|ts|tsx)$": "./node_modules/babel-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"transformIgnorePatterns": [
"./node_modules/(?!react-native)/"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"dependencies": {
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.2.3"
}
}