-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.91 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
{
"name": "gulp-qcloud-cos-upload",
"version": "0.0.0-development",
"description": "上传静态资源到腾讯云的 Gulp 插件",
"main": "index.js",
"scripts": {
"test": "gulp test",
"lint": "eslint --ext .js ./",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/TabSpace/gulp-qcloud-cos-upload.git"
},
"files": [
"index.js"
],
"keywords": [
"qcloud",
"gulp",
"cos",
"upload",
"腾讯云",
"file",
"文件",
"upload",
"上传"
],
"author": "TabSpace <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TabSpace/gulp-qcloud-cos-upload/issues"
},
"homepage": "https://github.com/TabSpace/gulp-qcloud-cos-upload#readme",
"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",
"gulp": "^4.0.2",
"gulp-mocha": "^7.0.2",
"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"
},
"dependencies": {
"chalk": "^2.4.2",
"fancy-log": "^1.3.3",
"plugin-error": "^1.0.1",
"qcloud-cos-upload": "^1.3.2",
"through2": "^4.0.2",
"url-join": "^4.0.1"
},
"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"
}
}
}