UNPKG

2.04 kBJSONView Raw
1{
2 "name": "@cycle/run",
3 "version": "5.7.0",
4 "description": "The Cycle.js run() function to use with xstream",
5 "license": "MIT",
6 "homepage": "https://cycle.js.org",
7 "bugs": "https://github.com/cyclejs/cyclejs/issues",
8 "repository": "https://github.com/cyclejs/cyclejs/tree/master/run",
9 "contributors": [
10 {
11 "name": "Andre Staltz",
12 "email": "andre@staltz.com"
13 },
14 {
15 "name": "Tylor Steinberger",
16 "email": "tlsteinberger167@gmail.com"
17 }
18 ],
19 "keywords": [
20 "reactive",
21 "framework",
22 "rxjs",
23 "rx",
24 "unidirectional",
25 "mvi",
26 "virtual-dom"
27 ],
28 "main": "lib/cjs/index.js",
29 "module": "lib/es6/index.js",
30 "typings": "lib/cjs/index.d.ts",
31 "types": "lib/cjs/index.d.ts",
32 "dependencies": {
33 "quicktask": "1.2.0",
34 "xstream": "10.x || 11.x"
35 },
36 "devDependencies": {
37 "@types/mocha": "5.2.x",
38 "@types/node": "10.12.x",
39 "@types/sinon": "5.0.x",
40 "mocha": "~6.2.0",
41 "sinon": "^7.1.1",
42 "ts-node": "^7.0.1",
43 "tslint": "^5.11.0",
44 "typescript": "=3.2.4",
45 "xstream": "11.x"
46 },
47 "engines": {
48 "node": ">=0.12.0"
49 },
50 "funding": {
51 "type": "opencollective",
52 "url": "https://opencollective.com/cyclejs"
53 },
54 "publishConfig": {
55 "access": "public"
56 },
57 "scripts": {
58 "build": "pnpm run build-cjs && pnpm run build-es6 && pnpm run move-adapt",
59 "build-cjs": "tsc --module commonjs --outDir ./lib/cjs",
60 "build-es6": "tsc --module es6 --outDir ./lib/es6",
61 "lint": "tslint --project tsconfig.lint.json --config ../tslint.json",
62 "docs": "cd .. && node .scripts/make-api-docs.js run",
63 "changelog": "cd .. && node .scripts/update-changelogs.js run",
64 "test": "mocha test/*.ts --require ts-node/register --exit",
65 "test-ci": "../.scripts/retry.sh pnpm test",
66 "move-adapt": "cp lib/cjs/adapt.* lib/"
67 },
68 "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"
69}
\No newline at end of file