-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.79 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": "qcloud-cos-upload",
"version": "0.0.0-development",
"description": "上传单个文件到腾讯云COS服务",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "eslint --ext .js ./",
"semantic-release": "semantic-release"
},
"dependencies": {
"chalk": "^4.1.0",
"cos-nodejs-sdk-v5": "^2.11.19",
"url-join": "^4.0.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"babel-eslint": "^10.1.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^8.0.1",
"power-assert": "^1.6.1",
"request-promise": "^4.2.6",
"semantic-release": "^17.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/TabSpace/qcloud-cos-upload.git"
},
"files": [
"index.js"
],
"keywords": [
"qcloud",
"腾讯云",
"cos",
"file",
"文件",
"upload",
"上传"
],
"author": "TabSpace <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TabSpace/qcloud-cos-upload/issues"
},
"homepage": "https://github.com/TabSpace/qcloud-cos-upload#readme",
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}