forked from tkrotoff/fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 789 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 789 Bytes
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
{
"name": "@tkrotoff/fetch-node-example",
"version": "1.0.0",
"private": true,
"description": "@tkrotoff/fetch Node.js example",
"type": "module",
"scripts": {
"clean": "rm -rf build coverage",
"clean:all": "npm run clean && rm -rf node_modules package-lock.json",
"start": "node --loader ts-node/esm index.ts",
"test": "jest --verbose",
"test:coverage": "jest --coverage",
"tsc": "tsc",
"npm:update": "npm run clean:all && npx npm-check-updates --upgrade && npm install"
},
"dependencies": {
"@tkrotoff/fetch": "file:../..",
"abort-controller": "^3.0.0",
"node-fetch": "^3.2.6",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.17.12",
"jest": "^28.1.1"
}
}