-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "add2calendar",
"version": "0.0.1",
"description": "Allows you to integrate your application with MS Outlook, Google Calendar, Yahoo Calendar and ICalendar file related projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c --sourcemap",
"build:iife": "rollup -c --format iife",
"build:umd": "rollup -c --format umd --sourcemap",
"test": "karma start",
"tslint": "tslint -c tslint.json 'src/**/*.ts'"
},
"author": "Marcelo",
"license": "ISC",
"devDependencies": {
"@types/jasmine": "^2.5.53",
"base64-js": "^1.2.1",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-concat": "^2.6.1",
"gulp-load-plugins": "^1.5.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-typescript": "^3.2.0",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"jasmine": "^2.6.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0",
"karma-typescript": "^3.0.4",
"rollup-plugin-multi-entry": "^2.0.1",
"rollup-plugin-uglify": "^2.0.1",
"tslint": "^5.5.0",
"typescript": "^2.4.1",
"uglify-es": "^3.0.24",
"vinyl-buffer": "^1.0.0"
},
"dependencies": {
"rollup-plugin-typescript": "^0.8.1"
}
}