-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
43 lines (43 loc) · 1.41 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
{
"name": "v-calendar-scheduler",
"version": "0.7.4",
"license": "MIT",
"description": "Calendar scheduler component for VueJs",
"homepage": "https://v-calendar.davidpaternina.com/",
"bugs": "https://github.com/dapd007/v-calendar-scheduler/issues",
"author": "David Paternina <[email protected]>",
"repository": "https://github.com/dapd007/v-calendar-scheduler",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build-clean && npm run build-sass && npm run build-autoprefix",
"build-autoprefix": "postcss --use autoprefixer --map false --output lib/main.css lib/main.css",
"build-clean": "rimraf lib",
"build-sass": "node-sass --output-style compressed --source-map true scss/main.scss lib/main.css --importer node_modules/node-sass-import",
"deploy": "npm run build && npm run docs",
"start": "npm run build-sass -- --watch",
"start-test": "npm run test-sass -- --watch",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"keywords": [
"vue",
"calendar",
"schedule",
"events"
],
"dependencies": {
"moment": "^2.22.1"
},
"peerDependencies": {
"vue": "^2.5.2"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"node-sass": "^4.5.3",
"node-sass-import": "^1.1.1",
"postcss-cli": "^4.1.0",
"rimraf": "^2.6.1",
"vuepress": "^0.8.4"
}
}