forked from patrickkamcord/react-autolink-text
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.23 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
{
"name": "react-autolink-text",
"version": "1.0.2",
"description": "A React component for converting URLs in a given string of text into clicking link tags.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/OpenGov/react-autolink-text.git"
},
"bugs": "https://github.com/OpenGov/react-autolink-text/issues",
"license": "MIT",
"scripts": {
"examples": "webpack-dev-server --config examples/webpack.config.js --content-base examples --inline",
"prepublish": "babel src --out-dir lib",
"test": "karma start"
},
"devDependencies": {
"babel": "^5.5.6",
"babel-core": "^5.5.6",
"babel-loader": "^5.1.4",
"es5-shim": "^4.1.6",
"jasmine-core": "^2.3.4",
"karma": "^0.13.14",
"karma-chrome-launcher": "^0.2.1",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.5",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"node-libs-browser": "^0.5.2",
"react": "^0.14.0",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.0",
"webpack": "^1.9.10",
"webpack-dev-server": "^1.9.0"
},
"dependencies": {
"react-pure-render": "^1.0.2"
},
"peerDependencies": {
"react": "0.14.x"
}
}