forked from component/reactive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "reactive-component",
"description": "Reactive template engine with data bindings",
"version": "0.13.2",
"keywords": ["reactive", "template", "engine", "data", "bind", "bindings"],
"main": "lib/index.js",
"dependencies": {
"classes-component": "1.1.3",
"event-component": "0.1.0",
"query-component": "*",
"props-component": "1.0.3",
"format-parser": "0.0.2",
"debug": "*"
},
"browser": {
"classes": "classes-component",
"event": "event-component",
"query": "query-component",
"props": "props-component"
},
"devDependencies": {
"better-assert": "*",
"mocha": "*"
},
"component": {
"scripts": {
"reactive/index.js": "lib/index.js",
"reactive/utils.js": "lib/utils.js",
"reactive/attr-binding.js": "lib/attr-binding.js",
"reactive/text-binding.js": "lib/text-binding.js",
"reactive/bindings.js": "lib/bindings.js",
"reactive/binding.js": "lib/binding.js",
"reactive/adapter.js": "lib/adapter.js"
}
}
}