forked from kefirjs/kefir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbower.json
58 lines (58 loc) · 1.22 KB
/
bower.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
{
"name": "kefir",
"version": "1.0.0",
"homepage": "https://github.com/pozadi/kefir",
"authors": [
"Roman Pominov <[email protected]>"
],
"description": "Reactive Programming library for JavaScript inspired by Bacon.js and RxJS with focus on high performance and low memory usage",
"main": "dist/kefir.js",
"moduleType": [
"amd",
"globals",
"node"
],
"keywords": [
"frp",
"bacon",
"bacon.js",
"kefir",
"kefir.js",
"functional",
"reactive",
"stream",
"streams",
"EventStream",
"Rx",
"RxJs",
"Observable"
],
"license": "MIT",
"ignore": [
"**",
"!dist/**",
"!LICENSE.txt"
],
"devDependencies": {
"bacon": "0.7.43",
"jquery": "1.11.1",
"jasmine-reporters": "[email protected]:larrymyers/jasmine-reporters.git#0.4.1",
"coffeescript": "[email protected]:jashkenas/coffeescript.git#1.9.0",
"stats.js": "[email protected]:mrdoob/stats.js.git#r12",
"transducers-js": "0.4.135"
},
"exportsOverride": {
"coffeescript": {
".": "extras/*.js"
},
"jasmine-reporters": {
".": "src/*.js"
},
"stats.js": {
".": "build/*.js"
},
"transducers-js": {
".": "transducers.js"
}
}
}