@cycle/run
Version:
The Cycle.js run() function to use with xstream
69 lines • 2.04 kB
JSON
{
"name": "@cycle/run",
"version": "5.7.0",
"description": "The Cycle.js run() function to use with xstream",
"license": "MIT",
"homepage": "https://cycle.js.org",
"bugs": "https://github.com/cyclejs/cyclejs/issues",
"repository": "https://github.com/cyclejs/cyclejs/tree/master/run",
"contributors": [
{
"name": "Andre Staltz",
"email": "andre@staltz.com"
},
{
"name": "Tylor Steinberger",
"email": "tlsteinberger167@gmail.com"
}
],
"keywords": [
"reactive",
"framework",
"rxjs",
"rx",
"unidirectional",
"mvi",
"virtual-dom"
],
"main": "lib/cjs/index.js",
"module": "lib/es6/index.js",
"typings": "lib/cjs/index.d.ts",
"types": "lib/cjs/index.d.ts",
"dependencies": {
"quicktask": "1.2.0",
"xstream": "10.x || 11.x"
},
"devDependencies": {
"@types/mocha": "5.2.x",
"@types/node": "10.12.x",
"@types/sinon": "5.0.x",
"mocha": "~6.2.0",
"sinon": "^7.1.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "=3.2.4",
"xstream": "11.x"
},
"engines": {
"node": ">=0.12.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/cyclejs"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm run build-cjs && pnpm run build-es6 && pnpm run move-adapt",
"build-cjs": "tsc --module commonjs --outDir ./lib/cjs",
"build-es6": "tsc --module es6 --outDir ./lib/es6",
"lint": "tslint --project tsconfig.lint.json --config ../tslint.json",
"docs": "cd .. && node .scripts/make-api-docs.js run",
"changelog": "cd .. && node .scripts/update-changelogs.js run",
"test": "mocha test/*.ts --require ts-node/register --exit",
"test-ci": "../.scripts/retry.sh pnpm test",
"move-adapt": "cp lib/cjs/adapt.* lib/"
},
"readme": "- [**Read the docs here**](https://cycle.js.org/api/run.html)\n- [**Edit the docs here**](https://github.com/cyclejs/cyclejs/blob/master/docs/content/api/run.md)\n"
}