-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.34 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
{
"name": "axios-test-instance",
"version": "8.0.0",
"description": "Test NodeJS backends using Axios",
"author": "Remco Haszing <remcohaszing@gmail.com>",
"license": "MIT",
"exports": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/remcohaszing/axios-test-instance.git"
},
"bugs": {
"url": "https://github.com/remcohaszing/axios-test-instance/issues"
},
"homepage": "https://github.com/remcohaszing/axios-test-instance#readme",
"keywords": [
"axios",
"express",
"fastify",
"http",
"jest",
"koa",
"test",
"testing"
],
"files": [
"index.js",
"index.d.ts",
"types.d.ts"
],
"funding": {
"url": "https://github.com/sponsors/remcohaszing"
},
"scripts": {
"prepack": "tsc --noEmit false",
"start": "jest --watchAll",
"test": "jest"
},
"dependencies": {
"@types/node": "*",
"axios": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/koa": "^2.0.0",
"body-parser": "^1.0.0",
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^9.0.0",
"express": "^4.0.0",
"fastify": "^4.0.0",
"jest": "^29.0.0",
"koa": "^2.0.0",
"prettier": "^2.0.0",
"remark-cli": "^11.0.0",
"remark-preset-remcohaszing": "^1.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
}
}