-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.06 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
{
"name": "@newarray/ali-oss-upload",
"version": "1.0.0",
"description": "support uploading files to ali oss",
"main": "lib/ali-oss-upload.cjs.js",
"module": "lib/ali-oss-upload.esm.js",
"browser": "lib/ali-oss-upload.browser.js",
"iife": "lib/ali-oss-upload.iife.js",
"type": "module",
"types": "lib/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"build:type": "tsc",
"build": "rollup -c",
"eslint": "eslint . --ext .js,.ts --fix",
"prettier": "prettier --write \"./**/*.{ts,js,json}\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weirui88888/ali-oss-upload.git"
},
"keywords": [
"alioss",
"upload",
"multipartUpload",
"oss",
"bucket"
],
"author": "weirui88888",
"license": "ISC",
"bugs": {
"url": "https://github.com/weirui88888/ali-oss-upload/issues"
},
"homepage": "https://github.com/weirui88888/ali-oss-upload#readme",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"mrm": "^4.1.13",
"prettier": "^2.8.4",
"rollup": "^3.17.3",
"rollup-plugin-node-builtins": "^2.1.2",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "npx --no-install commitlint --config commitlint.config.cjs --edit $1"
}
},
"lint-staged": {
"*.ts": [
"npm run eslint",
"npm run prettier"
]
},
"dependencies": {
"@types/ali-oss": "^6.16.7",
"ali-oss": "^6.17.1"
},
"volta": {
"node": "16.18.0"
}
}