-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
109 lines (109 loc) · 2.98 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
{
"name": "luch-request",
"version": "3.1.1",
"description": "基于Promise实现uni-app request 请求插件",
"keywords": [
"uni-app",
"request",
"Promise",
"luch",
"luch-request"
],
"main": "src/lib/luch-request.js",
"scripts": {
"dev": "rollup -c",
"watch": "rollup -c -w",
"build": "rimraf DCloud && rollup -c --environment NODE_ENV:production",
"zipD": "node node/zipDCloudPlugin.js && node node/zipDCloudDemo.js",
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0",
"pub": "npm publish && cnpm sync luch-request",
"pub:alpha": "npm publish --tag=alpha && cnpm sync luch-request",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/lei-mu/luch-request.git"
},
"author": "luch",
"license": "MIT",
"bugs": {
"url": "https://github.com/lei-mu/luch-request/issues"
},
"homepage": "https://www.quanzhan.co/luch-request/",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-arrow-functions": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@vuepress/plugin-active-header-links": "^1.5.0",
"@vuepress/plugin-pwa": "^1.5.2",
"archiver": "^4.0.1",
"babel-eslint": "^10.1.0",
"babel-preset-es2015": "^6.24.1",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^6.8.0",
"grunt": "^1.1.0",
"grunt-babel": "^8.0.0",
"load-grunt-tasks": "^5.1.0",
"node-zip": "^1.1.1",
"rollup": "^2.66.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-live-server": "^1.0.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-zip": "^1.0.0",
"validate-commit-msg": "^2.14.0",
"vuepress": "^1.4.1"
},
"engines": {
},
"config": {
"commitizen": {
"path": "./node_modules/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
}
},
"dependencies": {
"@dcloudio/types": "^2.0.16"
}
}