GT2/GT2-iOS/node_modules/rx-lite/package.json

103 lines
11 KiB
JSON

{
"_args": [
[
{
"raw": "rx-lite@^4.0.8",
"scope": null,
"escapedName": "rx-lite",
"name": "rx-lite",
"rawSpec": "^4.0.8",
"spec": ">=4.0.8 <5.0.0",
"type": "range"
},
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/inquirer"
]
],
"_from": "rx-lite@>=4.0.8 <5.0.0",
"_id": "rx-lite@4.0.8",
"_inCache": true,
"_location": "/rx-lite",
"_nodeVersion": "5.5.0",
"_npmOperationalInternal": {
"host": "packages-6-west.internal.npmjs.com",
"tmp": "tmp/rx-lite-4.0.8.tgz_1455670072274_0.041623756755143404"
},
"_npmUser": {
"name": "mattpodwysocki",
"email": "matthew.podwysocki@gmail.com"
},
"_npmVersion": "3.7.1",
"_phantomChildren": {},
"_requested": {
"raw": "rx-lite@^4.0.8",
"scope": null,
"escapedName": "rx-lite",
"name": "rx-lite",
"rawSpec": "^4.0.8",
"spec": ">=4.0.8 <5.0.0",
"type": "range"
},
"_requiredBy": [
"/inquirer",
"/rx-lite-aggregates"
],
"_resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz",
"_shasum": "0b1e11af8bc44836f04a6407e92da42467b79444",
"_shrinkwrap": null,
"_spec": "rx-lite@^4.0.8",
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/inquirer",
"author": {
"name": "Cloud Programmability Team",
"url": "https://github.com/Reactive-Extensions/RxJS/blob/master/authors.txt"
},
"browser": {
"index.js": "rx.lite.js"
},
"bugs": {
"url": "https://github.com/Reactive-Extensions/RxJS/issues"
},
"dependencies": {},
"description": "Lightweight library for composing asynchronous and event-based operations in JavaScript",
"devDependencies": {},
"directories": {},
"dist": {
"shasum": "0b1e11af8bc44836f04a6407e92da42467b79444",
"tarball": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz"
},
"homepage": "https://github.com/Reactive-Extensions/RxJS",
"jam": {
"main": "rx.lite.js"
},
"keywords": [
"React",
"Reactive",
"Events",
"Rx",
"RxJS"
],
"licenses": [
{
"type": "Apache License, Version 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"main": "rx.lite.js",
"maintainers": [
{
"name": "mattpodwysocki",
"email": "matthew.podwysocki@gmail.com"
}
],
"name": "rx-lite",
"optionalDependencies": {},
"readme": "# RxJS Lite Module #\n\nThe Reactive Extensions for JavaScript Lite version is a lightweight version of the Reactive Extensions for JavaScript which covers most of the day to day operators you might use all in a single library. Functionality such as bridging to events, promises, callbacks, Node.js-style callbacks, time-based operations and more are built right in. This comes with `rx.lite.js` which is for use in modern development environments such as > IE9 and server-side environments such as Node.js.\n\n## Getting Started\n\nThere are a number of ways to get started with RxJS.\n\n### Installing with [NPM](https://npmjs.org/)\n\n```bash`\n$ npm install rx-lite\n$ npm install -g rx-lite\n```\n\n### Using with Node.js and Ringo.js\n\n```js\nvar Rx = require('rx-lite');\n```\n\n### In a Browser:\n\n```html\n<!-- Just the core RxJS -->\n<script src=\"path/to/rx.lite.js\"></script>\n```\n\n## Included Observable Operators ##\n\n### `Observable Methods`\n- [`catch | catchException`](../../doc/api/core/operators/catch.md)\n- [`concat`](../../doc/api/core/operators/concat.md)\n- [`create | createWithDisposable`](../../doc/api/core/operators/create.md)\n- [`defer`](../../doc/api/core/operators/defer.md)\n- [`empty`](../../doc/api/core/operators/empty.md)\n- [`from`](../../doc/api/core/operators/from.md)\n- [`fromArray`](../../doc/api/core/operators/fromarray.md)\n- [`fromCallback`](../../doc/api/core/operators/fromcallback.md)\n- [`fromEvent`](../../doc/api/core/operators/fromevent.md)\n- [`fromEventPattern`](../../doc/api/core/operators/fromeventpattern.md)\n- [`fromNodeCallback`](../../doc/api/core/operators/fromnodecallback.md)\n- [`fromPromise`](../../doc/api/core/operators/frompromise.md)\n- [`interval`](../../doc/api/core/operators/interval.md)\n- [`just`](../../doc/api/core/operators/return.md)\n- [`merge`](../../doc/api/core/operators/merge.md)\n- [`mergeDelayError`](../../doc/api/core/operators/mergedelayerror.md)\n- [`never`](../../doc/api/core/operators/never.md)\n- [`of`](../../doc/api/core/operators/of.md)\n- [`ofWithScheduler`](../../doc/api/core/operators/ofwithscheduler.md)\n- [`range`](../../doc/api/core/operators/range.md)\n- [`repeat`](../../doc/api/core/operators/repeat.md)\n- [`return | returnValue`](../../doc/api/core/operators/return.md)\n- [`throw | throwError | throwException`](../../doc/api/core/operators/throw.md)\n- [`timer`](../../doc/api/core/operators/timer.md)\n- [`zip`](../../doc/api/core/operators/zip.md)\n- [`zipArray`](../../doc/api/core/operators/ziparray.md)\n\n### `Observable Instance Methods`\n- [`asObservable`](../../doc/api/core/operators/asobservable.md)\n- [`catch | catchException`](../../doc/api/core/operators/catchproto.md)\n- [`combineLatest`](../../doc/api/core/operators/combinelatest.md)\n- [`concat`](../../doc/api/core/operators/concatproto.md)\n- [`concatMap`](../../doc/api/core/operators/concatmap.md)\n- [`connect`](../../doc/api/core/operators/connect.md)\n- [`debounce`](../../doc/api/core/operators/debounce.md) \n- [`defaultIfEmpty`](../../doc/api/core/operators/defaultifempty.md)\n- [`delay`](../../doc/api/core/operators/delay.md)\n- [`dematerialize`](../../doc/api/core/operators/dematerialize.md)\n- [`distinctUntilChanged`](../../doc/api/core/operators/distinctuntilchanged.md)\n- [`do | doAction`](../../doc/api/core/operators/do.md)\n- [`doOnNext`](../../doc/api/core/operators/doonnext.md)\n- [`doOnError`](../../doc/api/core/operators/doonerror.md)\n- [`doOnCompleted`](../../doc/api/core/operators/dooncompleted.md)\n- [`filter`](../../doc/api/core/operators/where.md)\n- [`finally | finallyAction`](../../doc/api/core/operators/finally.md)\n- [`flatMap`](../../doc/api/core/operators/selectmany.md)\n- [`flatMapLatest`](../../doc/api/core/operators/flatmaplatest.md)\n- [`ignoreElements`](../../doc/api/core/operators/ignoreelements.md)\n- [`map`](../../doc/api/core/operators/select.md)\n- [`merge`](../../doc/api/core/operators/mergeproto.md)\n- [`mergeObservable | mergeAll`](../../doc/api/core/operators/mergeall.md)\n- [`multicast`](../../doc/api/core/operators/multicast.md)\n- [`publish`](../../doc/api/core/operators/publish.md)\n- [`publishLast`](../../doc/api/core/operators/publishlast.md)\n- [`publishValue`](../../doc/api/core/operators/publishvalue.md)\n- [`refCount`](../../doc/api/core/operators/refcount.md)\n- [`repeat`](../../doc/api/core/operators/repeat.md)\n- [`replay`](../../doc/api/core/operators/replay.md)\n- [`retry`](../../doc/api/core/operators/retry.md)\n- [`retryWhen`](../../doc/api/core/operators/retrywhen.md)\n- [`sample`](../../doc/api/core/operators/sample.md)\n- [`scan`](../../doc/api/core/operators/scan.md)\n- [`select`](../../doc/api/core/operators/select.md)\n- [`selectConcat`](../../doc/api/core/operators/concatmap.md)\n- [`selectMany`](../../doc/api/core/operators/selectmany.md)\n- [`selectSwitch`](../../doc/api/core/operators/flatmaplatest.md)\n- [`singleInstance`](../../doc/api/core/operators/singleinstance.md)\n- [`skip`](../../doc/api/core/operators/skip.md)\n- [`skipLast`](../../doc/api/core/operators/skiplast.md)\n- [`skipUntil`](../../doc/api/core/operators/skipuntil.md)\n- [`skipWhile`](../../doc/api/core/operators/skipwhile.md)\n- [`startWith`](../../doc/api/core/operators/startwith.md)\n- [`subscribe | forEach`](../../doc/api/core/operators/subscribe.md)\n- [`subscribeOnNext`](../../doc/api/core/operators/subscribeonnext.md)\n- [`subscribeOnError`](../../doc/api/core/operators/subscribeonerror.md)\n- [`subscribeOnCompleted`](../../doc/api/core/operators/subscribeoncompleted.md)\n- [`switch | switchLatest`](../../doc/api/core/operators/switch.md)\n- [`take`](../../doc/api/core/operators/take.md)\n- [`takeLast`](../../doc/api/core/operators/takelast.md)\n- [`takeUntil`](../../doc/api/core/operators/takeuntil.md)\n- [`takeWhile`](../../doc/api/core/operators/takewhile.md)\n- [`tap`](../../doc/api/core/operators/do.md)\n- [`tapOnNext`](../../doc/api/core/operators/doonnext.md)\n- [`tapOnError`](../../doc/api/core/operators/doonerror.md)\n- [`tapOnCompleted`](../../doc/api/core/operators/dooncompleted.md)\n- [`throttle`](../../doc/api/core/operators/throttle.md)\n- [`timeout`](../../doc/api/core/operators/timeout.md)\n- [`timestamp`](../../doc/api/core/operators/timestamp.md)\n- [`toArray`](../../doc/api/core/operators/toarray.md)\n- [`transduce`](../../doc/api/core/operators/transduce.md)\n- [`where`](../../doc/api/core/operators/where.md)\n- [`withLatestFrom`](../../doc/api/core/operators/withlatestfrom.md)\n- [`zip`](../../doc/api/core/operators/zipproto.md)\n\n## Included Classes ##\n\n### Core Objects\n- [`Rx.Observer`](../../doc/api/core/observer.md)\n- [`Rx.Notification`](../../doc/api/core/notification.md)\n\n### Subjects\n\n- [`Rx.AsyncSubject`](../../doc/api/subjects/asyncsubject.md)\n- [`Rx.BehaviorSubject`](../../doc/api/subjects/behaviorsubject.md)\n- [`Rx.ReplaySubject`](../../doc/api/subjects/replaysubject.md)\n- [`Rx.Subject`](../../doc/api/subjects/subject.md)\n\n### Schedulers\n\n- [`Rx.Scheduler`](../../doc/api/schedulers/scheduler.md)\n\n### Disposables\n\n- [`Rx.CompositeDisposable`](../../doc/api/disposables/compositedisposable.md)\n- [`Rx.Disposable`](../../doc/api/disposables/disposable.md)\n- [`Rx.RefCountDisposable`](../../doc/api/disposables/refcountdisposable.md)\n- [`Rx.SerialDisposable`](../../doc/api/disposables/serialdisposable.md)\n- [`Rx.SingleAssignmentDisposable`](../../doc/api/disposables/singleassignmentdisposable.md)\n\n## Contributing ##\n\nThere are lots of ways to contribute to the project, and we appreciate our [contributors](https://github.com/Reactive-Extensions/RxJS/wiki/Contributors). If you wish to contribute, check out our [style guide]((https://github.com/Reactive-Extensions/RxJS/tree/master/doc/contributing)).\n\nYou can contribute by reviewing and sending feedback on code checkins, suggesting and trying out new features as they are implemented, submit bugs and help us verify fixes as they are checked in, as well as submit code fixes or code contributions of your own. Note that all code submissions will be rigorously reviewed and tested by the Rx Team, and only those that meet an extremely high bar for both quality and design/roadmap appropriateness will be merged into the source.\n\n## License ##\n\nCopyright (c) Microsoft Open Technologies, Inc. All rights reserved.\nMicrosoft Open Technologies would like to thank its contributors, a list\nof whom are at https://github.com/Reactive-Extensions/RxJS/wiki/Contributors.\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you\nmay not use this file except in compliance with the License. You may\nobtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\nimplied. See the License for the specific language governing permissions\nand limitations under the License.\n",
"readmeFilename": "readme.md",
"repository": {
"type": "git",
"url": "git+https://github.com/Reactive-Extensions/RxJS.git"
},
"scripts": {},
"title": "Reactive Extensions for JavaScript (RxJS) Lite",
"version": "4.0.8"
}