-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.45 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
{
"license": "MIT",
"version": "1.0.9",
"author": "Trekels Vincent",
"name": "vue2-simple-calendar",
"main": "dist/vue-calendar.js",
"description": "A simple event calendar component",
"repository": "https://github.com/Trekels/vue2-calendar",
"bugs": "https://github.com/Trekels/vue2-calendar/issues",
"files": [
"src",
"dist/vue-calendar.js"
],
"scripts": {
"test": "jest --coverage",
"build": "node build/build.js",
"dev": "node build/dev-server.js"
},
"keywords": [
"vue",
"vuejs",
"events",
"calendar"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.0.4",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^2.1.0",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.28.6",
"express": "^4.15.4",
"extract-text-webpack-plugin": "^3.0.2",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.17.4",
"jest": "^21.2.1",
"node-sass": "^4.7.2",
"ora": "^1.3.0",
"sass-loader": "^6.0.6",
"vue-loader": "^13.0.4",
"vue-template-compiler": "^2.4.2",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.18.2",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"vue": "^2.4.2"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}