-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "react-linkify",
"version": "1.0.0-alpha",
"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/index.js",
"types": "index.d.ts",
"files": ["dist", "index.d.ts"],
"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": {
"prepare": "npm run build",
"build": "babel src/ -d dist/",
"prepublish": "npm run build",
"test": "BABEL_JEST_STAGE=0 jest --testPathIgnorePatterns /dist/"
},
"dependencies": {
"linkify-it": "^2.0.3",
"tlds": "^1.199.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.0.4",
"babel-plugin-module-resolver": "^3.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^22.0.4",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0"
}
}