-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "v-year-calendar",
"version": "1.0.2",
"description": "Official Vue.js wrapper for the year-calendar widget",
"main": "./dist/v-year-calendar.js",
"scripts": {
"watch": "rollup -c --watch",
"clean": "rimraf dist && rimraf locales",
"build": "npm run clean && rollup -c && npm run build:locales",
"build:locales": "cpy node_modules/js-year-calendar/locales/* locales && renamer --find js-year-calendar --replace v-year-calendar locales/*",
"prepare": "npm run build",
"test": "echo 'No tests implemented'"
},
"pre-commit": [
"build",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/year-calendar/v-year-calendar.git"
},
"keywords": [
"calendar",
"year",
"javascript",
"widget",
"vue",
"vue.js"
],
"author": "Paul-DS",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/year-calendar/v-year-calendar/issues"
},
"homepage": "https://year-calendar.github.io/",
"dependencies": {
"js-year-calendar": "^1.0.2"
},
"peerDependencies": {
"vue": "^2.5.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"cpy-cli": "^3.1.0",
"renamer": "^1.1.4",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-postcss": "^2.5.0",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-vue": "^4.7.2",
"vue-template-compiler": "^2.6.11"
}
}