forked from kewisch/ical.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.99 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "ical.js",
"version": "1.1.2",
"author": "Philipp Kewisch",
"contributors": [
"Github Contributors (https://github.com/mozilla-comm/ical.js/graphs/contributors)"
],
"description": "Javascript parser for ics (rfc5545) and vcard (rfc6350) data",
"main": "build/ical.js",
"repository": {
"type": "git",
"url": "https://github.com/mozilla-comm/ical.js.git"
},
"keywords": [
"calendar",
"iCalendar",
"jCal",
"vCard",
"jCard",
"parser"
],
"dependencies": {},
"devDependencies": {
"benchmark": "~2.1",
"biased-opener": "^0.2.5",
"chai": "~3.5",
"closure-linter-wrapper": "^1.0.1",
"coveralls": "^2.11.2",
"grunt": "^0.4.5",
"grunt-concurrent": "^2.0.0",
"grunt-contrib-concat": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^1.0.0",
"grunt-coveralls": "^1.0.0",
"grunt-gh-pages": "^1.0.0",
"grunt-gjslint": "^0.2.0",
"grunt-jsdoc": "^1.1.0",
"grunt-karma": "^0.12.0",
"grunt-mocha-cli": "^2.0.0",
"grunt-mocha-istanbul": "^3.0.0",
"grunt-release": "^0.13.0",
"istanbul": "^0.4.2",
"karma": "^0.13.9",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.2.0",
"karma-sauce-launcher": "^0.3.0",
"karma-spec-reporter": "^0.0.24",
"minami": "^1.1.0",
"mocha": "~2.4",
"node-static": "^0.7.6",
"open": "0.0.5",
"sync-exec": "^0.6.0",
"test-agent": "~0.28.2"
},
"optionalDependencies": {
"grunt-node-inspector": "^0.4.1"
},
"license": "MPL-2.0",
"engine": {
"node": ">=0.4"
},
"scripts": {
"test": "grunt test-node"
},
"files": [
"build/ical.js",
"build/ical.min.js",
"lib/ical/*.js"
],
"saucelabs": {
"SL_Chrome": {
"base": "SauceLabs",
"browserName": "chrome"
},
"SL_InternetExplorer9": {
"base": "SauceLabs",
"browserName": "internet explorer",
"version": 9
},
"SL_Firefox": {
"base": "SauceLabs",
"browserName": "firefox"
}
}
}