-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "@someimportantcompany/koa-vhost",
"version": "1.0.1",
"description": "Virtual host support for Koa",
"main": "koa-vhost.js",
"scripts": {
"dev": "nodemon example.js",
"lint": "eslint .",
"test": "nyc --reporter=lcov --reporter=text --exclude *.test.js mocha ./*.test.js",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": "https://github.com/someimportantcompany/koa-vhost.git",
"bugs": "https://github.com/someimportantcompany/koa-vhost/issues",
"homepage": "https://github.com/someimportantcompany/koa-vhost#readme",
"author": "James D <james@jdrydn.com> (https://jdrydn.com)",
"license": "MIT",
"keywords": [
"koa",
"vhost"
],
"files": [
"./koa-vhost.js"
],
"_moduleAliases": {
"koa-vhost": "./"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-sort-requires": "^2.1.0",
"koa": "^2.13.1",
"mocha": "^6.2.3",
"mocha-axios": "^1.4.2",
"module-alias": "^2.2.2",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"rewire": "^5.0.0"
},
"engines": {
"node": ">= 10.0"
}
}