forked from kefirjs/kefir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.85 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
{
"name": "kefir",
"version": "3.4.0",
"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",
"scripts": {
"test": "eslint . && grunt rollup:dev && jasmine-node --coffee --matchall test/specs",
"test-only": "grunt rollup:dev && jasmine-node --coffee --matchall test/specs"
},
"keywords": [
"frp",
"bacon",
"bacon.js",
"kefir",
"kefir.js",
"functional",
"reactive",
"stream",
"streams",
"EventStream",
"Rx",
"RxJs",
"Observable"
],
"author": "Roman Pominov <[email protected]>",
"homepage": "https://github.com/rpominov/kefir",
"repository": {
"type": "git",
"url": "http://github.com/rpominov/kefir.git"
},
"license": "MIT",
"devDependencies": {
"@reactivex/rxjs": "5.0.0-alpha.1",
"babel-core": "6.10.4",
"babel-preset-es2015": "6.9.0",
"babel-preset-es2015-loose": "7.0.0",
"babel-preset-es2015-loose-rollup": "7.0.0",
"babelify": "7.3.0",
"coffee-script": "1.10.0",
"coffeeify": "1.1.0",
"eslint": "2.2.0",
"grunt": "0.4.5",
"grunt-bower-task": "0.4.0",
"grunt-browserify": "4.0.1",
"grunt-cli": "0.1.13",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-jade": "0.15.0",
"grunt-rollup": "0.7.1",
"inquirer": "0.10.1",
"jasmine-node": "1.14.5",
"load-grunt-tasks": "3.3.0",
"rollup": "0.33.0",
"rollup-plugin-babel": "2.6.1",
"rollup-plugin-commonjs": "3.1.0",
"rollup-plugin-node-resolve": "1.7.1",
"rollup-plugin-uglify": "1.0.1",
"semver": "5.0.3",
"shelljs": "0.5.3",
"sinon": "1.17.1",
"time-grunt": "1.2.1",
"transducers-js": "0.4.174",
"transducers.js": "0.3.2",
"zen-observable": "0.3.0"
},
"dependencies": {
"symbol-observable": "^1.0.1"
}
}