UNPKG

rx-hot-adapter

Version:
72 lines (71 loc) 1.91 kB
{ "name": "rx-hot-adapter", "version": "3.0.0", "description": "Cycle.js RxJS 4 Hot Stream Adapter", "main": "lib/index.js", "typings": "lib/index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/whitecolor/rx-hot-adapter.git" }, "contributors": [ { "name": "Andre Staltz", "email": "andre@staltz.com" }, { "name": "Tylor Steinberger", "email": "tlsteinberger167@gmail.com" } ], "keywords": [ "Cycle", "Cycle.js", "core", "rx", "adapter" ], "license": "MIT", "bugs": { "url": "https://github.com/cyclejs/rx-hot-adapter/issues" }, "homepage": "https://github.com/cyclejs/rx-hot-adapter", "browserify-shim": { "rx": "global:Rx" }, "peerDependencies": { "rx": "*", "rx-hot": "*" }, "devDependencies": { "@cycle/base": "^4.0.0", "assert": "^1.3.0", "babel-preset-es2015": "^6.3.13", "babel-register": "^6.4.3", "babelify": "^7.2.0", "browserify": "^13.0.0", "browserify-shim": "^3.8.12", "mkdirp": "^0.5.1", "mocha": "^2.3.4", "rx": "^4.0.7", "rx-hot": "^1.0.4", "tslint": "3.6.0", "typescript": "^1.8.7", "typings": "^1.0.4", "uglify-js": "^2.6.1" }, "scripts": { "lint": "tslint -c tslint.json src/*.ts", "premocha": "npm run lib", "mocha": "mocha --compilers js:babel-register test", "test": "npm run lint && npm run mocha", "prelib": "rm -rf lib/ && mkdirp lib/ && typings install", "lib": "tsc", "predist": "rm -rf dist/ && mkdirp dist/ && npm run lib", "dist": "browserify -t browserify-shim -t babelify --exclude rx lib/index.js -o dist/cycle-rx-hot-adapter.js", "postdist": "uglifyjs dist/cycle-rx-hot-adapter.js -o dist/cycle-rx-hot-adapter.min.js", "start": "npm install && npm prune", "prepublish": "npm run lib", "preversion": "npm run dist" } }