-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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
{
"name": "express-subdomain-middleware",
"version": "1.0.11",
"description": "Express subdomain middleware support for arbitrary hostnames.",
"repository": "https://github.com/mwalkerwells/express-subdomain-middleware",
"main": "./lib/index.js",
"scripts": {
"types": "flow-copy-source -v src lib",
"flow": "./node_modules/.bin/flow",
"build": "./node_modules/.bin/babel src -d lib && npm run types",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=7.9.0"
},
"babel": {
"presets": [
"stage-3",
"flow",
[
"env",
{
"targets": {
"node": 7.9
}
}
]
]
},
"keywords": [
"express",
"middlware",
"subdomain",
"hostname"
],
"author": {
"name": "M. Walker Wells",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.4.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-3": "^6.24.1",
"express": "^4.15.2",
"flow-bin": "^0.45.0",
"flow-copy-source": "^1.1.0"
}
}