This repository has been archived by the owner on May 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.51 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
{
"name": "@kasa/koa-http-client",
"version": "1.0.0",
"description": "HTTP Client to communicate with the context during inter-service communications in Koa",
"homepage": "https://github.com/kasa-network/koa-http-client",
"author": {
"name": "Kasa Engineering",
"email": "dev@kasa.network",
"url": "http://www.kasa.network"
},
"contributors": [
{
"name": "Byungjin Park",
"email": "posquit0.bj@gmail.com",
"url": "http://www.posquit0.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kasa-network/koa-http-client.git"
},
"bugs": {
"url": "https://github.com/kasa-network/koa-http-client/issues"
},
"keywords": [
"kasa",
"koa",
"koa2",
"koa-middleware",
"koa2-middleware",
"http-client",
"http"
],
"engines": {
"node": ">= 8.0.0"
},
"files": [
"index.js",
"lib/"
],
"main": "index.js",
"scripts": {
"release": "standard-version",
"test": "NODE_ENV=test jest --passWithNoTests",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"lint": "eslint lib test",
"lint:lib": "eslint lib",
"lint:test": "eslint test"
},
"dependencies": {
"debug": "^4.1.1",
"got": "^9.6.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.14.1",
"eslint-config-kasa": "^0.2.0",
"jest": "^24.1.0",
"jest-extended": "^0.11.1",
"jest-junit": "^6.3.0",
"standard-version": "^5.0.0"
}
}