-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "@chrissong/multi-part-upload",
"version": "1.0.1",
"description": "multi part upload ",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "rollup -c -w --environment NODE_ENV:development",
"build": "npm run clean && rollup -c --environment NODE_ENV:production",
"serve": "nodemon ./server/app.js",
"serve:debug": "node --inspect-brk ./server/app.js",
"clean": "rimraf dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mulit",
"part",
"upload"
],
"author": "chrissong",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-strip": "^2.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/axios": "^0.14.0",
"@types/spark-md5": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"fs-extra": "^9.1.0",
"jest": "^26.6.3",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-logger": "^3.2.1",
"koa-multer": "^1.0.2",
"koa-router": "^10.0.0",
"koa-send": "^5.0.1",
"koa-static": "^5.0.0",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"rollup": "^2.43.1",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.4",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"axios": "^0.21.1"
},
"dependencies": {
"spark-md5": "^3.0.1"
}
}