-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.02 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.02 KB
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
{
"name": "node-uploadx-src",
"version": "6.2.1",
"description": "Node.js resumable upload middleware",
"keywords": [
"resumable",
"upload",
"express",
"uploadx",
"middleware",
"s3",
"gcloud"
],
"author": {
"name": "Oleg Kukhariev",
"url": "https://github.com/kukhariev"
},
"repository": {
"type": "git",
"url": "https://github.com/kukhariev/node-uploadx.git"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"start": "npm run build && npm run server --workspace examples",
"build": "tsc --build packages",
"build:watch": "tsc --build --watch packages",
"clean": "tsc --build packages --clean && rimraf -g packages/*/lib upload files dist",
"lint": "eslint --fix",
"prepare": "husky",
"prettier": "prettier --write \"**/*.{json,md}\"",
"test": "jest",
"test:serial": "jest --runInBand",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.29.0",
"@types/jest": "^30.0.0",
"@types/node": "24.0.3",
"@types/supertest": "6.0.3",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-jest": "29.0.1",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-prettier": "5.5.0",
"express": "^5.2.1",
"globals": "^16.2.0",
"husky": "9.1.7",
"jest": "30.0.2",
"lint-staged": "16.1.2",
"memfs": "^4.17.2",
"node-mocks-http": "1.17.2",
"prettier": "3.6.0",
"rimraf": "6.0.1",
"supertest": "7.1.1",
"ts-jest": "29.4.0",
"tsconfig-paths": "4.2.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0"
},
"private": true,
"workspaces": [
"packages/*",
"examples"
],
"lint-staged": {
"*.{md,json}": "prettier --write",
"{packages,examples,test}/**/*.ts": "eslint --fix"
}
}