-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.46 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
60
61
62
63
64
65
66
{
"name": "@ianwalter/test-server",
"version": "2.1.0",
"description": "Easily create a minimal Koa or Express server for testing",
"license": "SEE LICENSE IN LICENSE",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ianwalter/test-server.git"
},
"keywords": [
"test",
"server",
"create",
"koa",
"testing",
"unit",
"mock",
"express"
],
"author": "Ian Walter <public@iankwalter.com> (https://iankwalter.com)",
"bugs": {
"url": "https://github.com/ianwalter/test-server/issues"
},
"homepage": "https://github.com/ianwalter/test-server#readme",
"files": [
"index.js",
"koa.js",
"express.js"
],
"scripts": {
"lint": "eslint .",
"test": "bff"
},
"dependencies": {
"@ianwalter/print": "^3.5.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"koa": "^2.8.1",
"koa-bodyparser": "^4.2.1",
"koa-compress": "^3.0.0",
"koa-json": "^2.0.2",
"server-destroy": "^1.0.1",
"type-is": "^1.6.18"
},
"devDependencies": {
"@ianwalter/bff": "^9.9.1",
"@ianwalter/eslint-config": "^6.2.0",
"@ianwalter/puppeteer-helper": "^4.0.0",
"@ianwalter/release": "^5.0.2",
"@ianwalter/renovate-config": "^1.4.3",
"@ianwalter/requester": "^2.2.0"
},
"eslintConfig": {
"root": true,
"extends": [
"@ianwalter"
]
},
"renovate": {
"extends": [
"@ianwalter"
]
}
}