-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 1.89 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
{
"name": "node-uploadx-src",
"version": "6.1.5",
"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": ">=14.18.20",
"npm": ">=7.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 --ext .js,.ts",
"prepare": "husky",
"prettier": "prettier --write \"**/*.{json,md}\"",
"test": "jest",
"test:serial": "jest --runInBand",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "20.14.11",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-prettier": "5.2.1",
"express": "^4.19.2",
"husky": "9.1.1",
"jest": "29.7.0",
"lint-staged": "15.2.7",
"memfs": "^4.9.3",
"node-mocks-http": "1.15.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"supertest": "7.0.0",
"ts-jest": "29.2.3",
"tsconfig-paths": "4.2.0",
"typescript": "^5.5.3"
},
"private": true,
"workspaces": [
"packages/*",
"examples"
],
"lint-staged": {
"*.{md,json}": "prettier --write",
"{packages,examples,test}/**/*.ts": "eslint --fix"
}
}