-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.05 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
111
112
113
114
115
116
117
{
"name": "vue-get-code",
"version": "1.1.4",
"description": "",
"author": "https://github.com/En777",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/En777/vue-get-code.git"
},
"keywords": [
"verification code",
"verification-code",
"验证码组件",
"短信验证码",
"邮件验证码",
"验证码倒计时",
"获取验证码",
"发送验证码",
"组件",
"vue",
"sfc",
"component"
],
"files": [
"src",
"dist"
],
"main": "dist/vue-get-code.umd.js",
"module": "dist/vue-get-code.esm.js",
"jsdelivr": "dist/vue-get-code.min.js",
"unpkg": "dist/vue-get-code.min.js",
"browser": {
"./sfc": "src/vue-get-code.vue"
},
"types": "src/vue-get-code.d.ts",
"scripts": {
"dev": "vue-styleguidist server",
"test": "jest --verbose",
"doc": "vue-styleguidist build",
"build": "npm run build:unpkg & npm run build:es & npm run build:umd & npm run doc",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/vue-get-code.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/vue-get-code.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vue-get-code.min.js",
"stdver": "standard-version -m '[skip ci] chore(release): v%s'",
"release": "gren release --override"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/plugin-transform-runtime": "7.13.10",
"@babel/preset-env": "7.4.3",
"@femessage/github-release-notes": "latest",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "17.1.0",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.5",
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-jest": "23.1.1",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-vue": "5.2.3",
"file-loader": "3.0.1",
"glob": "7.1.3",
"husky": "1.3.1",
"jest": "24.8.0",
"less": "3.9.0",
"less-loader": "5.0.0",
"lint-staged": "8.1.0",
"minimist": "1.2.0",
"prettier": "1.18.2",
"rollup": "2.41.0",
"rollup-plugin-terser": "4.0.4",
"rollup-plugin-vue": "4.7.2",
"standard-version": "6.0.1",
"stylelint": "9.10.0",
"stylelint-config-standard": "18.2.0",
"vue": "2.6.11",
"vue-loader": "15.7.1",
"vue-styleguidist": "3.26.2",
"vue-template-compiler": "2.6.11",
"webpack": "4.29.6"
},
"publishConfig": {
"access": "public"
},
"vue-sfc-cli": "1.14.0",
"engines": {
"node": ">= 8.3.0",
"npm": ">= 3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.@(md|json)": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.vue": [
"eslint --fix",
"prettier --write",
"stylelint --fix",
"git add"
]
},
"gren": "@femessage/grenrc"
}