-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.64 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
{
"name": "react-linkify",
"version": "0.2.2",
"description": "React component to parse links (urls, emails, etc.) in text into clickable links",
"homepage": "http://tasti.github.io/react-linkify/",
"author": "Tasti Zakarie",
"license": "MIT",
"main": "dist/react-linkify.cjs.js",
"module": "dist/react-linkify.es.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/tasti/react-linkify.git"
},
"keywords": [
"react-linkify",
"react",
"linkify",
"react-component",
"link",
"url",
"email",
"autolink",
"urlize",
"urlify"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepublish": "npm run build",
"test": "BABEL_JEST_STAGE=0 jest --testPathIgnorePatterns /dist/"
},
"dependencies": {
"linkify-it": "^2.0.3",
"tlds": "^1.199.0"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.37",
"@babel/preset-env": "7.0.0-beta.37",
"@babel/preset-flow": "7.0.0-beta.37",
"@babel/preset-react": "7.0.0-beta.37",
"@babel/preset-stage-0": "7.0.0-beta.37",
"babel-core": "^7.0.0-0",
"babel-jest": "^22.0.4",
"babel-plugin-module-resolver": "^3.0.0",
"jest": "^22.0.4",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"rollup": "^0.53.3",
"rollup-plugin-babel": "4.0.0-beta.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1"
}
}