-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "dr-fetch",
"version": "0.5.0",
"description": "Fetching done right, not just the happy path.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"test": "ts-mocha -n loader=ts-node/esm -p ./tsconfig.json ./src/tests/**/*.test.ts",
"build": "npx tsc && npx publint",
"prebuild": "npm run test"
},
"keywords": [
"fetch"
],
"author": {
"email": "[email protected]",
"name": "José Pablo Ramírez Vargas",
"url": "https://github.com/WJSoftware"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"@types/sinon": "^17.0.3",
"chai": "^5.1.2",
"mocha": "^10.8.2",
"publint": "^0.2.12",
"sinon": "^19.0.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}