forked from OpenGov/react-autolink-text
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "react-autolink-text2",
"version": "3.3.0",
"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/schneidmaster/react-autolink-text.git"
},
"bugs": "https://github.com/schneidmaster/react-autolink-text/issues",
"license": "MIT",
"scripts": {
"examples": "webpack-dev-server --config examples/webpack.config.js --content-base examples --inline",
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"test": "jest",
"lint": "eslint src/*.js test/*.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"files": [
"lib/",
"src/",
"LICENSE.txt",
"package.json",
"README.md"
],
"jest": {
"collectCoverage": true
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"coveralls": "^2.13.1",
"eslint": "^4.0.0",
"eslint-plugin-react": "^7.1.0",
"html-webpack-plugin": "^2.29.0",
"jest": "^21.2.1",
"react": "^0.14.9 || ^15.3.0 || ^16.0.0",
"react-dom": "^0.14.9 || ^15.3.0 || ^16.0.0",
"regenerator-runtime": "^0.10.5",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
},
"dependencies": {
"prop-types": "^0.14.9 || ^15.3.0 || ^16.0.0"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0"
}
}