-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.31 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
{
"name": "drino",
"version": "1.9.1",
"description": "Flexible and Reactive HTTP Client",
"license": "MIT",
"author": {
"name": "Rémy Abitbol",
"url": "https://github.com/remscodes"
},
"scripts": {
"build": "rollup -c",
"test": "node ./tests/fixtures/process/test.mjs",
"types": "tsc --noEmit",
"types:spec": "pnpm run types -p ./tsconfig.spec.json",
"types:all": "pnpm run types & pnpm run types:spec",
"start-web-runner": "web-test-runner",
"start-test-server": "node ./tests/fixtures/server/server.mjs",
"rm-dist": "node ./scripts/rm-dist.cjs",
"playwright": "node ./node_modules/.pnpm/playwright@1.42.1/node_modules/playwright/cli.js",
"install-playwright": "pnpm run playwright install --with-deps",
"prebuild": "pnpm run rm-dist",
"pretest": "pnpm run types:all"
},
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/remscodes/drino"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"thror": "^1.0.3"
},
"devDependencies": {
"@esm-bundle/chai": "4.3.4-fix.0",
"@esm-bundle/chai-as-promised": "^7.1.1",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"@types/sinon": "^17.0.3",
"@web/dev-server-esbuild": "^1.0.3",
"@web/test-runner": "^0.19.0",
"@web/test-runner-playwright": "^0.11.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"esbuild": "^0.24.0",
"express": "^4.21.1",
"helmet": "^8.0.0",
"rollup": "^4.26.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"sinon": "^19.0.2",
"typescript": "^5.6.3"
},
"keywords": [
"http",
"fetch",
"request",
"promise",
"callback"
],
"packageManager": "pnpm@9.12.0",
"sideEffects": false
}