-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.49 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "obs-upload",
"version": "1.0.4",
"description": "浏览器端的obs简易上传封装",
"keywords": [
"obs",
"upload",
"vod"
],
"main": "dist/obs-upload.esm.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "standard-version",
"pub": "npm publish && cnpm sync obs-upload",
"pub:alpha": "npm publish --tag=alpha && cnpm sync obs-upload"
},
"exports": {
".": {
"import": "./dist/obs-upload.esm.mjs",
"require": "./dist/obs-upload.common.js"
},
"./dist/*": "./dist/*"
},
"repository": {
"type": "git",
"url": "https://github.com/lei-mu/obs-upload.git"
},
"author": "luch",
"license": "ISC",
"homepage": "https://github.com/lei-mu/obs-upload",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.7",
"@babel/plugin-external-helpers": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.11.0",
"husky": "^8.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.5.0"
},
"dependencies": {
"core-js": "^3.21.1",
"esdk-obs-browserjs": "^3.22.3",
"lodash-es": "^4.17.21",
"nanoid": "^4.0.0",
"p-all": "^4.0.0",
"p-retry": "^5.1.1",
"p-wait-for": "^4.1.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"build",
"ci",
"chore",
"revert"
],
"scope": {
"required": false,
"allowed": [
"*"
],
"validate": false,
"multiple": false
},
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "subject does not match subject pattern!",
"helpMessage": "",
"autoFix": false
}
}
}