forked from anandchakru-archives/angular-addtocalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "angular-addtocalendar",
"version": "1.1.5",
"description": "AngularJS directive for adding events to calendar apps",
"main": "addtocalendar.min.js",
"scripts": {
"test": "./node_modules/karma/bin/karma start karma.conf.js --single-run",
"build": "rm -rf ./coverage/ && ./node_modules/uglify-js/bin/uglifyjs lib/*.js addtocalendar.js -o addtocalendar.min.js"
},
"repository": {
"type": "git",
"url": "git://github.com/jshor/angular-addtocalendar"
},
"keywords": [
"icalendar",
"google calendar",
"ics",
"outlook",
"calendar",
"event"
],
"author": "Josh Shor <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jshor/angular-addtocalendar/issues"
},
"homepage": "https://github.com/jshor/angular-addtocalendar",
"devDependencies": {
"angular-mocks": "^1.5.3",
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"uglify-js": "^2.6.1"
},
"dependencies": {
"angular": "^1.5.3"
}
}