diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-28 10:22:08 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-28 10:22:08 -0600 |
commit | bcb1ad98de0ab2d2b184e030d8a7bcbb1e4e288b (patch) | |
tree | a19c7c054ce78d9a44169cbc68170faba216b67c /package.json | |
parent | 8723b51693f824fbd62218ab0789a76b34315904 (diff) | |
download | voidsky-bcb1ad98de0ab2d2b184e030d8a7bcbb1e4e288b.tar.zst |
Fix a couple incorrect link detections ('e.g.' and 'foo.jpg') (close #13)
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/package.json b/package.json index f500c0e87..6d54102c8 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,8 @@ "react-native-svg": "^12.4.0", "react-native-tab-view": "^3.3.0", "react-native-url-polyfill": "^1.3.0", - "react-native-web": "^0.17.7" + "react-native-web": "^0.17.7", + "tlds": "^1.234.0" }, "devDependencies": { "@babel/core": "^7.12.9", @@ -74,7 +75,9 @@ }, "jest": { "preset": "react-native", - "setupFiles": ["./jest.js"], + "setupFiles": [ + "./jest.js" + ], "moduleFileExtensions": [ "ts", "tsx", |