-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.43 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "react-anchorify-text",
"version": "2.4.1",
"description": "React component which render text with anchored url(s)",
"main": "lib/index.js",
"scripts": {
"browser": "browser-sync start --files example/* --server example",
"watch:example": "watchify example/app.js -dv -o example/bundle.js",
"start:example": "yarn run watch:example & yarn run browser",
"test:local": "karma start",
"test": "NODE_EVN=test ./node_modules/.bin/karma start --browsers Firefox --single-run && codecov",
"clean": "rimraf lib",
"build": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git://github.com/mobilusoss/react-anchorify-text"
},
"keywords": [
"react",
"react-component",
"url",
"anchor",
"link"
],
"author": "Takeharu.Oshida",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobilusoss/react-anchorify-text/issues"
},
"homepage": "https://github.com/mobilusoss/react-anchorify-text",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-plugin-istanbul": "^5.1.4",
"babelify": "^10.0.0",
"browser-sync": "^2.26.7",
"browserify": "^16.3.0",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"eslint": "^6.0.1",
"eslint-plugin-react": "^7.14.2",
"karma": "^4.2.0",
"karma-browserify": "^6.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.0.0",
"karma-cli": "2.0.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.32",
"mocha": "^6.1.4",
"react": "^16.8.6",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3",
"watchify": "^3.11.1"
},
"dependencies": {
"core-js": "3",
"linkify-it": "^2.2.0",
"prop-types": "^15.7.2",
"tlds": "^1.203.1"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"browserify": {
"transform": [
[
"babelify"
]
]
}
}