-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "react-native-linkify",
"version": "1.4.0",
"description": "A <Linkify /> component for react-native to make urls, fuzzy links, emails etc clickable",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel --presets=@babel/preset-env,@babel/preset-react --plugins=@babel/plugin-proposal-object-rest-spread,@babel/plugin-proposal-class-properties src/Linkify.js --out-file dist/index.js",
"prepare": "npm run build",
"prepush": "npm run build",
"precommit": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ursnj/react-native-linkify.git"
},
"keywords": [
"react",
"react-native",
"text",
"link",
"hyperlink",
"autolink",
"linkify",
"url"
],
"author": "Niranjan Devasani",
"license": "MIT",
"bugs": {
"url": "https://github.com/ursnj/react-native-linkify/issues"
},
"homepage": "https://github.com/ursnj/react-native-linkify#readme",
"dependencies": {
"linkify-it": "^4.0.1",
"mdurl": "^1.0.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.47.0"
},
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"husky": "^8.0.1"
},
"types": "index.d.ts"
}