-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "react-www-redirect",
"version": "1.0.5",
"description": "Force a redirect to WWW when not on a local web server.",
"main": "lib/index.js",
"scripts": {
"compile": "babel --presets es2015,stage-0,react -d lib/ src/",
"lint": "eslint src",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sopnopriyo/react-www-redirect.git"
},
"keywords": [
"react",
"www",
"redirect",
"component"
],
"author": "Shahin Alam (https://github.com/sopnopriyo)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sopnopriyo/react-www-redirect/issues"
},
"homepage": "https://github.com/sopnopriyo/react-www-redirect#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "10.0.3",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"eslint": ">=6.4.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-react": "^7.14.3"
},
"dependencies": {
"prop-types": "^15.7.2"
}
}