UNPKG

cyclejs-stream

Version:

Observable (events stream) to which you can inject another streams.

56 lines (55 loc) 2.05 kB
{ "name": "cyclejs-stream", "version": "1.0.1", "author": "Eryk Napierala", "description": "Observable (events stream) to which you can inject another streams.", "license": "MIT", "homepage": "https://github.com/erykpiast/cyclejs-stream", "bugs": "https://github.com/erykpiast/cyclejs-stream/issues", "repository": { "type": "git", "url": "https://github.com/erykpiast/cyclejs-stream" }, "keywords": [ "cyclejs", "stream", "inject" ], "main": "dist/create-stream.js", "dependencies": { "core-js": "^0.9.11" }, "peerDependencies": { "@cycle/core": ">=1.0" }, "devDependencies": { "babel": "~5.6", "babelify": "~6.1", "browserify": "~11.0", "chai": "~3.2", "@cycle/core": "~1.0", "jscs": "~1.13", "jshint": "~2.8", "mocha": "~2.2", "uglify-js": "~2.4" }, "engines": { "node": ">=0.10.0" }, "scripts": { "lint": "jshint src/", "jscs": "jscs src/", "mocha": "mocha --compilers js:babel/register --reporter spec --ui tdd test", "test": "npm run lint && npm run mocha", "browserify": "browserify src/create-stream.js -t babelify --standalone createStream --outfile dist/create-stream.js", "uglify": "uglifyjs dist/create-stream.js -o dist/create-stream.min.js", "dist": "npm run browserify && npm run uglify", "precompile": "npm run lint && rm -rf dist/ && mkdir -p dist", "compile": "babel -d dist/ src/", "prepublish": "npm run precompile && npm run compile", "release": "npm run release-patch", "release-patch": "git checkout master && npm run prepublish; git commit -a -m 'Build dist/'; npm version patch && git push origin master --tags && npm publish", "release-minor": "git checkout master && npm run prepublish; git commit -a -m 'Build dist/'; npm version minor && git push origin master --tags && npm publish", "release-major": "git checkout master && npm run prepublish; git commit -a -m 'Build dist/'; npm version major && git push origin master --tags && npm publish" } }