-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
131 lines (131 loc) · 3.53 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "react-native-ignore-warnings",
"version": "0.2.0",
"description": "⚛️🤷⚠️ Ignore react native warnings and logs",
"sideEffects": false,
"keywords": [
"console",
"ecma",
"error",
"ignore",
"info",
"log",
"native",
"react",
"react-native",
"react-native-ignore-warnings",
"warn",
"warning",
"warnings"
],
"homepage": "https://github.com/clayrisser/react-native-ignore-warnings",
"bugs": {
"url": "https://github.com/clayrisser/react-native-ignore-warnings/issues",
"email": "email@clayrisser.com"
},
"license": "Apache-2.0",
"author": {
"name": "Clay Risser",
"email": "email@clayrisser.com",
"url": "https://clayrisser.com"
},
"files": [
"es",
"lib"
],
"module": "es/index.js",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/clayrisser/react-native-ignore-warnings"
},
"scripts": {
"build": "make -s build",
"clean": "make -s clean",
"coverage": "make -s coverage",
"format": "make -s format",
"inc": "make -s inc",
"lint": "make -s lint",
"make": "make",
"postinstall": "make -s postinstall",
"prepare": "make -s prepare",
"purge": "make -s purge",
"report": "make -s report",
"spellcheck": "make -s spellcheck",
"start": "make -s start",
"test": "make -s test",
"test:ui": "make test-ui",
"test:watch": "make -s test-watch"
},
"dependencies": {
"@babel/runtime": "^7.14.6",
"core-js": "^3.15.2",
"ignore-warnings": "^0.2.1"
},
"peerDependencies": {
"react-native": "^0.64.2"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-proposal-private-methods": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.24",
"@types/react-native": "^0.64.11",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-loader": "^8.2.2",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"cloc": "^2.8.0",
"cspell": "^5.6.6",
"eslint": "^7.30.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-spellcheck": "^0.0.19",
"jest": "^27.0.6",
"jest-sonar-reporter": "^2.0.0",
"lockfile-lint": "^4.6.2",
"majestic": "^1.8.1",
"prettier": "^2.3.2",
"react-native": "^0.64.2",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=6.0.0"
},
"eslintIgnore": [
"es",
"lib"
],
"jest": {
"testRegex": "((/(tests|__tests__)((/|/[^_.\n][^/\n]*(/[^_.\n][^/\n]+)*/)[^_.\n][^/\n]*))|((/|/.*/)(([^_.\n][^/\n]*.(spec|test))|(spec|test)))).[jt]sx?$",
"testEnvironment": "node",
"verbose": true,
"testPathIgnorePatterns": [
"<rootDir>/es/",
"<rootDir>/lib/"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/_setup.ts"
]
},
"jestSonar": {
"reportPath": "node_modules/.tmp/reports",
"reportFile": "test-report.xml",
"indent": 4
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
}
}