-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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": "calendar-component",
"description": "Calendar component",
"version": "0.2.0",
"keywords": [
"calendar",
"date",
"ui"
],
"dependencies": {
"domify": "1.0.0",
"emitter-component": "1.0.1",
"classes-component": "1.1.3",
"range-component": "1.0.0",
"in-groups-of": "component/in-groups-of#1.0.0",
"event-component": "~0.1.0"
},
"browser": {
"event": "event-component",
"emitter": "emitter-component",
"classes": "classes-component",
"range": "range-component"
},
"component": {
"styles": [
"lib/calendar.css"
],
"scripts": {
"calendar/index.js": "index.js",
"calendar/lib/utils.js": "lib/utils.js",
"calendar/lib/template.js": "lib/template.js",
"calendar/lib/calendar.js": "lib/calendar.js",
"calendar/lib/days.js": "lib/days.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/component/calendar.git"
},
"devDependencies": {
"bounds": "~1.0.0",
"jshint": "^2.7.0",
"mocha": "~1",
"type-component": "0.0.1"
}
}