-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "cron-picker-vue",
"description": "模仿阿里云的 Cron 表达式选择组件",
"version": "1.1.1",
"private": false,
"main": "dist/CronPicker.umd.min.js",
"files": [
"dist"
],
"author": "willxiao90",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:willxiao90/cron-picker-vue.git"
},
"keywords": [
"cron",
"picker",
"vue",
"maker",
"generator",
"editor",
"ui"
],
"homepage": "https://github.com/willxiao90/cron-picker-vue#readme",
"bugs": {
"url": "https://github.com/willxiao90/cron-picker-vue/issues"
},
"directories": {
"example": "example"
},
"scripts": {
"serve": "vue-cli-service serve --open",
"build-example": "vue-cli-service build --dest docs",
"build": "vue-cli-service build --target lib --name CronPicker src/index.js",
"pub": "npm run build && npm version patch && npm publish"
},
"dependencies": {
"core-js": "^3.6.5",
"element-ui": "^2.13.2",
"vue": "^2.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"vue-template-compiler": "^2.6.11"
}
}