-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.02 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
100
101
102
103
104
105
106
107
108
109
110
{
"name": "object-process",
"version": "1.0.1",
"description": "obs,oss 等对象处理",
"keywords": [
"obs",
"oss",
"image",
"video",
"process"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:mic": "microbundle --name ObjectProcess",
"pack:install": "yarn install",
"build": "rollup -c",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "standard-version",
"pub": "npm publish && cnpm sync object-process",
"pub:alpha": "npm publish --tag=alpha && cnpm sync object-process",
"pub:beta": "npm publish --tag=beta && cnpm sync object-process"
},
"exports": {
".": {
"require": "./dist/object-process.common.js",
"default": "./dist/object-process.esm.mjs"
},
"./dist/*": "./dist/*"
},
"main": "./dist/object-process.common.js",
"unpkg": "./dist/object-process.umd.js",
"type": "module",
"source": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/lei-mu/object-process.git"
},
"author": "luch",
"license": "ISC",
"homepage": "https://github.com/lei-mu/object-process.git",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.20.5",
"@babel/plugin-external-helpers": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.20.2",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@vuepress/plugin-docsearch": "^2.0.0-beta.53",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.11.0",
"husky": "^8.0.1",
"microbundle": "^0.15.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.5.0",
"vuepress": "^2.0.0-beta.53",
"vuepress-plugin-sitemap2": "^2.0.0-beta.134"
},
"dependencies": {
"@vuepress/plugin-pwa": "^2.0.0-beta.53",
"@vuepress/plugin-pwa-popup": "^2.0.0-beta.53",
"process-model": "^0.0.1-alpha.1"
},
"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
}
}
}