-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
27 lines (27 loc) · 870 Bytes
/
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
{
"name": "FormatGoogleCalendar",
"version": "0.2.0",
"description": "Script gets public Google calendar and displays list of events.",
"author": "Milan Lund <[email protected]>",
"readme": "README.md",
"scripts": {
"babel": "babel --presets es2015 src/app.js -o dist/format-google-calendar.js",
"start": "webpack-dev-server --open",
"webpack": "webpack --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/MilanKacurak/FormatGoogleCalendar.git"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"compression-webpack-plugin": "^1.0.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
}
}