-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 985 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 985 Bytes
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
{
"name": "react-redirector",
"version": "0.0.9-alpha",
"description": "Redirect to a URL using React",
"license": "MIT",
"repository": "abranhe/react-redirector",
"author": {
"name": "Carlos Abraham",
"email": "abraham@abranhe.com",
"url": "https://abranhe.com"
},
"bugs": {
"url": "https://github.com/abranhe/react-redirector/issues"
},
"main": "lib/index.js",
"homepage": "https://p.abranhe.com/react-redirector",
"scripts": {
"test": "xo"
},
"files": [ "index.js" ],
"keywords": [
"url",
"url-redirect",
"redirector",
"redirect",
"react",
"react-redirector"
],
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"prop-types": "^15.7.2"
},
"devDependencies": {
"eslint-config-xo-react": "^0.20.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0"
},
"xo": {
"extends": "xo-react",
"rules": {
"no-undef": 0
}
}
}