-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.19 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
{
"name": "clean-redirect",
"version": "1.0.0",
"description": "Enforce HTTPS, www to naked domains, remove trailing slash, to lower case, and your own custom redirect logic, all in one single redirect.",
"author": {
"name": "Ray East",
"url": "https://github.com/raycharius"
},
"repository": {
"type": "git",
"url": "https://github.com/raycharius/clean-redirect"
},
"homepage": "https://github.com/raycharius/clean-redirect",
"bugs": {
"url": "https://github.com/raycharius/clean-redirect/issues"
},
"files": [
"src/",
"README.md"
],
"main": "src/index.js",
"license": "MIT",
"keywords": [
"redirect",
"seo",
"301",
"302",
"http",
"https",
"url",
"redirects",
"enforce",
"force",
"trailing",
"slash",
"naked",
"domain",
"www",
"subdomain",
"chain",
"middleware"
],
"scripts": {
"test": "jest",
"lint-fix": "eslint 'src/**/*.js' --fix",
"lint-check": "eslint 'src/**/*.js'"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"prettier-eslint-cli": "^5.0.0",
"jest": "^26.0.1"
}
}