-
Notifications
You must be signed in to change notification settings - Fork 519
/
package.json
84 lines (84 loc) · 2.39 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
83
84
{
"name": "qiniu-js",
"jsName": "qiniu",
"version": "3.4.2",
"private": false,
"description": "Javascript SDK for Qiniu Resource (Cloud) Storage AP",
"main": "lib/index.js",
"types": "esm/index.d.ts",
"module": "esm/index.js",
"scripts": {
"test": "jest --coverage",
"clean": "del \"./(lib|dist|esm)\"",
"build": "npm run clean && tsc && babel esm --out-dir lib && webpack --optimize-minimize --config webpack.prod.js",
"dev": "webpack-dev-server --open --config webpack.dev.js",
"lint": "tsc --noEmit && eslint --ext .ts src/",
"server": "node test/server.js"
},
"repository": {
"type": "git",
"url": "git://github.com/qiniu/js-sdk.git"
},
"author": "[email protected]",
"bugs": {
"url": "https://github.com/qiniu/js-sdk/issues"
},
"contributors": [
{
"name": "jinxinxin",
"email": "[email protected]"
},
{
"name": "winddies",
"email": "[email protected]"
},
{
"name": "yinxulai",
"email": "[email protected]"
}
],
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@qiniu/eslint-config": "^0.0.6-beta.7",
"@types/jest": "^26.0.23",
"@types/node": "^15.3.1",
"@types/spark-md5": "^3.0.2",
"@typescript-eslint/eslint-plugin": "~4.10.0",
"@typescript-eslint/parser": "^4.28.4",
"babel-loader": "^8.1.0",
"babel-plugin-syntax-flow": "^6.18.0",
"body-parser": "^1.18.2",
"connect-multiparty": "^2.1.0",
"del-cli": "^3.0.1",
"eslint": "~7.2.0",
"eslint-import-resolver-typescript": "~2.3.0",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-jsx-a11y": "~6.3.0",
"eslint-plugin-react": "~7.20.0",
"eslint-plugin-react-hooks": "~4.2.0",
"express": "^4.16.2",
"jest": "^26.0.1",
"multiparty": "^4.1.3",
"qiniu": "^7.3.1",
"request": "^2.88.1",
"terser-webpack-plugin": "4.2.3",
"ts-jest": "25.5.1",
"ts-loader": "^6.2.1",
"typedoc": "^0.17.7",
"typescript": "^3.9.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"license": "MIT",
"dependencies": {
"@babel/runtime-corejs2": "^7.10.2",
"querystring": "^0.2.1",
"spark-md5": "^3.0.0"
}
}