-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
67 lines (67 loc) · 1.46 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
{
"name": "egg-multipart",
"version": "3.4.0",
"eggPlugin": {
"name": "multipart",
"optionalDependencies": [
"schedule"
]
},
"description": "multipart plugin for egg",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test --ts false",
"cov": "egg-bin cov --ts false",
"ci": "npm run lint && npm run cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-multipart.git"
},
"keywords": [
"egg",
"egg-plugin",
"eggPlugin",
"multipart"
],
"author": "gxcsoccer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eggjs/egg/issues"
},
"homepage": "https://github.com/eggjs/egg-multipart#readme",
"engines": {
"node": ">= 14.17.0"
},
"files": [
"lib",
"app",
"config",
"app.js",
"index.d.ts"
],
"types": "index.d.ts",
"dependencies": {
"co-busboy": "^2.0.0",
"dayjs": "^1.11.5",
"egg-path-matching": "^1.0.1",
"humanize-bytes": "^1.0.1"
},
"devDependencies": {
"@eggjs/tsconfig": "^1.2.0",
"@types/node": "^20.14.2",
"coffee": "^5.4.0",
"egg": "^3.9.0",
"egg-bin": "6",
"egg-mock": "^5.4.0",
"eslint": "^8.23.1",
"eslint-config-egg": "^12",
"formstream": "^1.5.1",
"is-type-of": "^1.2.1",
"typescript": "5",
"urllib": "3",
"stream-wormhole": "^2.0.1"
}
}