-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
66 lines (66 loc) · 1.66 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
{
"name": "react-native-url-polyfill",
"version": "2.0.0",
"description": "A lightweight and trustworthy URL polyfill for React Native",
"keywords": [
"URL",
"URLSearchParams",
"polyfill",
"react native",
"whatwg-url"
],
"bugs": {
"url": "https://github.com/charpeni/react-native-url-polyfill/issues"
},
"homepage": "https://github.com/charpeni/react-native-url-polyfill",
"readme": "https://github.com/charpeni/react-native-url-polyfill#readme",
"repository": {
"type": "git",
"url": "https://github.com/charpeni/react-native-url-polyfill.git"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint .",
"type-check": "tsc index.d.ts",
"prepare": "husky install",
"bundle-size": "node scripts/bundle-size"
},
"author": "Nicolas Charpentier <[email protected]>",
"license": "MIT",
"dependencies": {
"whatwg-url-without-unicode": "8.0.0-3"
},
"devDependencies": {
"@react-native-community/eslint-config": "3.2.0",
"detox": "20.14.3",
"eslint": "8.56.0",
"eslint-plugin-prettier": "5.1.1",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "15.2.0",
"metro-react-native-babel-preset": "0.76.7",
"nanoid": "3.3.7",
"prettier": "3.1.1",
"react": "18.2.0",
"react-native": "0.72.1",
"react-native-bundle-scale": "1.1.0",
"typescript": "5.3.3"
},
"peerDependencies": {
"react-native": "*"
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/node_modules/",
"./platforms/"
]
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}