-
-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
28 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,31 @@ | ||
{ | ||
"name": "xstream-perf", | ||
"version": "0.0.0", | ||
"description": "Perf tests for most.js", | ||
"description": "Perf tests for xstream", | ||
"author": "Andre Staltz <andre+npm@staltz.com> (http://andre.staltz.com/)", | ||
"license": "MIT", | ||
"scripts": { | ||
"filter-map-fusion": "node ./filter-map-fusion", | ||
"filter-map-reduce": "node ./filter-map-reduce", | ||
"flatMap": "node ./flatMap.js", | ||
"merge": "node ./merge.js", | ||
"scan": "node ./scan.js", | ||
"switchMap": "node ./switchMap", | ||
"start": "npm run filter-map-reduce && npm run filter-map-fusion && npm run flatMap && npm run merge && npm run scan && npm run switchMap" | ||
"flattenConcurrently": "node ./flattenConcurrently", | ||
"merge": "node ./merge", | ||
"combine": "node ./combine", | ||
"fold": "node ./fold", | ||
"flatten": "node ./flatten", | ||
"dataflow": "node ./dataflow", | ||
"start": "npm-run-all filter-map-reduce merge combine flatten fold dataflow flattenConcurrently filter-map-fusion" | ||
}, | ||
"dependencies": { | ||
"@reactivex/rxjs": "^5.0.0-beta.11", | ||
"baconjs": "^0.7.85", | ||
"@reactivex/rxjs": "5.0.x", | ||
"baconjs": "0.7.x", | ||
"benchmark": "github:bestiejs/benchmark.js#master", | ||
"highland": "^2.9.0", | ||
"kefir": "^3.4.0", | ||
"lodash": "^4.15.0", | ||
"most": "^1.0.1", | ||
"rx": "^4.1.0" | ||
"kefir": "3.6.x", | ||
"lodash": "4.17.x", | ||
"highland": "2.10.x", | ||
"most": "1.1.x", | ||
"rx": "4.1.x" | ||
}, | ||
"devDependencies": { | ||
"npm-run-all": "^3.1.2" | ||
} | ||
} |