-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.58 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "sagetest",
"version": "0.1.27",
"description": "A simple, fast, and easy to use HTTP server testing library",
"repository": {
"type": "git",
"url": "git+https://github.com/eddienubes/sagetest.git"
},
"homepage": "https://github.com/eddienubes/sagetest#readme",
"author": "Eddie Nubes <cool.gegeg@gmail.com>",
"bugs": {
"url": "https://github.com/eddienubes/sagetest/issues"
},
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"files": [
"build"
],
"main": "build/index.js",
"exports": {
".": {
"import": "./build/index.mjs",
"require": "./build/index.js",
"types": "./build/index.d.ts"
}
},
"scripts": {
"prepack": "misc/package.sh",
"test:all": "pnpm vitest run",
"test:watch": "pnpm vitest watch",
"test:ci": "pnpm vitest run --coverage",
"build:dev": "tsc -p tsconfig.json",
"build:prod": "rm -rf ./build && pnpm rollup -c && tsc -p tsconfig.build.json && pnpm tsc-alias -p tsconfig.build.json",
"lint:check": "eslint --max-warnings=50 .",
"lint:fix": "eslint --max-warnings=50 --fix .",
"valid": "pnpm lint:fix && pnpm build:dev"
},
"keywords": [
"http",
"testing",
"express",
"fastify",
"https",
"server",
"supertest",
"superagent",
"axios",
"undici",
"multipart",
"test",
"jest",
"vitest",
"mocha",
"sagetest"
],
"devDependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/multipart": "^8.3.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.8",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.6.0",
"compare-versions": "^6.1.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-i": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"express": "^4.21.0",
"fastify": "^4.28.1",
"form-data": "^4.0.0",
"mime-db": "^1.53.0",
"multer": "1.4.5-lts.1",
"prettier": "^3.3.3",
"rollup": "^4.22.5",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"supertest": "^7.0.0",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.1",
"typedoc-plugin-markdown": "^4.0.3",
"typescript": "^5.5.4",
"vitest": "^1.6.0"
},
"dependencies": {
"undici": "^6.20.0"
}
}