-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.32 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
56
57
58
59
{
"name": "express-naked-redirect",
"version": "0.1.9",
"description": "expressNakedRedirect is a middleware for Express that redirects naked(root domain) request to www or its reverse.",
"contributors": [
{
"name": "GONZO",
"email": "[email protected]"
}
],
"main": "index.js",
"scripts": {
"test": "standard && mocha --reporter spec --bail --check-leaks test.js",
"lint": "standard",
"lintfix": "standard --fix",
"lintmon": "./node_modules/nodemon/bin/nodemon.js --exec './node_modules/standard/bin/cmd.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/why2pac/express-naked-redirect.git"
},
"keywords": [
"node",
"express",
"redirect",
"naked",
"domain",
"www"
],
"dependencies": {
"parse-domain": "^3.0.3"
},
"devDependencies": {
"express": "^4.17.1",
"mocha": "^9.0.2",
"standard": "^16.0.3",
"supertest": "^6.1.3",
"url-pattern": "^1.0.3"
},
"files": [
"LICENSE",
"README.md",
"index.js"
],
"standard": {
"env": [
"mocha"
]
},
"engines": {
"node": ">= 0.8.0"
},
"author": "GONZO",
"license": "MIT",
"bugs": {
"url": "https://github.com/why2pac/express-naked-redirect/issues"
},
"homepage": "https://github.com/why2pac/express-naked-redirect#readme"
}