-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
35 lines (35 loc) · 879 Bytes
/
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
{
"name": "wildcard-subdomains",
"description": "Handle dynamic/wildcard subdomains in Express.js",
"version": "1.1.0",
"homepage": "https://github.com/patmood/wildcard-subdomains",
"author": {
"name": "Patrick Moody",
"url": "http://www.patmoody.com"
},
"scripts": {
"test": "tap ./test/*",
"example": "node ./examples/basic.js",
"dev": "node ./test/* | tap-diff"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/patmood/wildcard-subdomains"
},
"bugs": "https://github.com/patmood/wildcard-subdomains/issues",
"keyword": [
"wildcard subdomains",
"express subdomains",
"dynamic subdomains",
"subdomains"
],
"devDependencies": {
"express": "^4.13.4",
"supertest": "^1.2.0",
"tap": "^5.7.2",
"tap-diff": "^0.1.1",
"tape": "^4.5.1"
},
"license": "MIT"
}