forked from canjs/canjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuilder.json
179 lines (178 loc) · 4.45 KB
/
builder.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"filename": "can.custom.js",
"banner": "/*!\n * <%= pkg.title || pkg.name %> - <%= pkg.version %>\n * <%= pkg.homepage %>\n * Copyright (c) <%= new Date().getFullYear() %> <%= pkg.author.name %>\n * <%= new Date().toUTCString() %>\n * Licensed <%= pkg.licenses[0].type %>\n<% if(typeof url !== \"undefined\") { %>\n * Includes: <%= ids %>\n * Download from: <%= url %>\n<% } %> */\n",
"modules": {
"can/component/component": {
"name": "can.Component",
"description": "Custom elements and widgets",
"type": "core",
"isDefault": true
},
"can/construct/construct": {
"name": "can.Construct",
"description": "Inheritable constructor functions",
"type": "core",
"isDefault": true
},
"can/map/map": {
"name": "can.Map",
"description": "Observables and key-value bindings",
"type": "core",
"isDefault": true
},
"can/list/list": {
"name": "can.List",
"description": "Observables lists",
"type": "core",
"isDefault": true
},
"can/list/promise/promise": {
"name": "can.List.promise",
"description": "Promises on lists",
"type": "plugin"
},
"can/compute/compute": {
"name": "can.compute",
"description": "can.compute lets you make observable values",
"type": "core",
"isDefault": true
},
"can/model/model": {
"name": "can.Model",
"description": "Observes connected to a RESTful JSON interface",
"type": "core",
"isDefault": true
},
"can/view/view": {
"name": "can.view",
"description": "Template loading, caching, rendering",
"type": "core",
"isDefault": true
},
"can/view/stache/stache": {
"name": "can.stache",
"description": "High performance Mustache-like templates",
"type": "core",
"isDefault": true
},
"can/control/control": {
"name": "can.Control",
"description": "Declarative event bindings",
"type": "core",
"isDefault": true
},
"can/route/route": {
"name": "can.route",
"description": "Back button and bookmarking support",
"type": "core",
"isDefault": true
},
"can/route/pushstate/pushstate": {
"name": "can.route.pushstate",
"description": "can.route with pushstate",
"type": "plugin"
},
"can/map/define/define": {
"name": "can.Map.define",
"type": "plugin",
"description": "Define rich attribute behavior"
},
"can/list/sort/sort": {
"name": "can.List.Sort",
"type": "plugin",
"description": "Sort observable lists"
},
"can/util/fixture/fixture": {
"name": "can.fixture",
"type": "plugin",
"description": "Intercepts an AJAX request and simulates the response with a file or function"
},
"can/view/bindings/bindings": {
"name": "can.view.bindings",
"type": "core",
"isDefault": true,
"hidden": true
},
"can/view/live/live": {
"name": "can.view.live",
"type": "core",
"isDefault": true,
"hidden": true
},
"can/view/scope/scope": {
"name": "can.view.Scope",
"type": "core",
"isDefault": true,
"hidden": true
},
"can/util/tests/tests": {
"name": "can.util.tests",
"type": "plugin",
"hidden": true
},
"can/util/object/object": {
"name": "can.Object",
"type": "plugin",
"description": "Helper methods for object comparison"
},
"can/util/function/function": {
"name": "can.util.function",
"type": "plugin",
"hidden": true
},
"can/view/autorender/autorender": {
"name": "can.autorender",
"type": "plugin",
"description": "Automatically render templates found in the document"
},
"can/util/domless/domless": {
"name": "can.util.domless",
"type": "plugin",
"isDefault": false,
"hasTest": false
},
"can/view/stache/system": {
"name": "can.view.stache.system",
"type": "plugin",
"description": "Steal plugin for loading Stache templates",
"hasTest": false
},
"can/util/event": {
"name": "can.util.event",
"type": "core",
"hidden": true,
"hasTest": false
},
"can/util/vdom/build_fragment/build_fragment": {
"name": "can.util.vdom.buildFragment",
"type": "plugin",
"hidden": true
},
"can/util/vdom/document/document": {
"name": "can.util.vdom.document",
"type": "plugin",
"hidden": true
},
"can/view/import/import": {
"name": "can.view.import",
"type": "core",
"isDefault": true,
"hidden": true
}
},
"types": {
"core": "CanJS core",
"plugin": "Plugins"
},
"configurations": {
"jquery": {
"description": "jQuery",
"isDefault": true,
"library": "node_modules/jquery/dist/jquery.js",
"steal": {
"paths": {
}
}
}
}
}