forked from eggjs/egg-multipart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.82 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
74
75
76
77
78
79
80
81
82
{
"name": "egg-multipart",
"version": "2.7.1",
"eggPlugin": {
"name": "multipart",
"optionalDependencies": [
"schedule"
]
},
"description": "multipart plugin for egg",
"main": "index.js",
"scripts": {
"autod": "autod",
"lint": "eslint .",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"ci": "egg-bin pkgfiles && npm run lint && npm run cov",
"ci-windows": "egg-bin pkgfiles && npm run lint -- --fix && npm run cov",
"pkgfiles": "egg-bin pkgfiles"
},
"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": ">= 8.0.0"
},
"files": [
"app",
"config",
"app.js",
"index.d.ts"
],
"types": "index.d.ts",
"ci": {
"type": "travis, azure-pipelines",
"command": {
"azure-pipelines": "ci-windows"
},
"version": "8, 10, 12",
"license": {
"year": 2017
}
},
"dependencies": {
"co-busboy": "^1.4.0",
"humanize-bytes": "^1.0.1",
"moment": "^2.22.2",
"mz": "^2.7.0",
"mz-modules": "^2.1.0",
"stream-wormhole": "^1.1.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/node": "^11.11.3",
"autod": "^3.0.1",
"coffee": "^5.2.1",
"egg": "^2.11.2",
"egg-bin": "^4.9.0",
"egg-ci": "^1.9.2",
"egg-mock": "^3.20.1",
"eslint": "^5.6.0",
"eslint-config-egg": "^7.1.0",
"formstream": "^1.1.0",
"is-type-of": "^1.0.0",
"urllib": "^2.30.0",
"typescript": "^3.2.2"
}
}