-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "node-file-transload",
"version": "1.0.2",
"description": "Library for file transload (download and upload, on-the-fly)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start:dev": "npx nodemon",
"start": "npm run build && node dist/index.js",
"clean": "rimraf build",
"prebuild": "npm run clean",
"build": "tsc",
"preversion": "npm run build",
"postversion": "git push --follow-tags",
"test": "jest",
"test:dev": "jest --watchAll",
"start-ts": "ts-node ./src"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/4miners/node-file-transload.git"
},
"keywords": [
"node",
"typescript",
"upload",
"download",
"transload",
"files"
],
"author": "Mariusz Serek",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.15.0",
"@types/node-fetch": "^2.6.2",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"rimraf": "^4.3.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"abort-controller": "^3.0.0",
"form-data": "^4.0.0",
"node-fetch": "^2.6.9"
}
}