-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.56 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
{
"name": "@supercharge/sttp",
"description": "An HTTP client for a pleasant developer experience.",
"version": "1.5.0",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/supercharge/sttp/issues"
},
"dependencies": {
"axios": "~0.27.2"
},
"devDependencies": {
"@supercharge/tsconfig": "~1.0.0",
"@typescript-eslint/eslint-plugin": "~4.33.0",
"c8": "~7.14.0",
"eslint": "~7.32.0",
"eslint-config-standard-with-typescript": "~21.0.1",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~5.2.0",
"eslint-plugin-standard": "~4.1.0",
"expect": "~27.5.1",
"koa": "~2.15.0",
"koa-body": "~4.2.0",
"typescript": "~4.9.5",
"uvu": "~0.5.6"
},
"engines": {
"node": ">=8"
},
"files": [
"dist"
],
"main": "dist",
"types": "dist",
"homepage": "https://github.com/supercharge/sttp",
"keywords": [
"nodejs",
"http",
"http-client",
"supercharge",
"superchargejs"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/sttp.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && npm run lint && npm run test:coverage",
"test:run": "uvu",
"test:coverage": "c8 --include=dist npm run test:run && npm run test:report",
"test:report": "c8 report --reporter=html"
}
}