UNPKG

2.13 kBJSONView Raw
1{
2 "name": "kefir",
3 "version": "3.8.5",
4 "description": "Reactive Programming library for JavaScript inspired by Bacon.js and RxJS with focus on high performance and low memory usage",
5 "main": "dist/kefir.js",
6 "scripts": {
7 "prettify": "./configs/prettier.sh",
8 "build-js": "rollup -c ./configs/rollup.dev.js && rollup -c ./configs/rollup.esm.js && rollup -c ./configs/rollup.prod.js && cp kefir.js.flow dist/",
9 "build-docs": "node configs/docs.js",
10 "deploy-docs": "git checkout gh-pages && git merge master && npm run build && git add . && git commit -m 'build all' && git push && git checkout master",
11 "clean": "rm -r dist index.html || true",
12 "build": "npm run clean && npm run build-js && npm run build-docs",
13 "test": "./configs/prettier.sh check && rollup -c ./configs/rollup.dev.js && mocha && flow check",
14 "test-only": "rollup -c ./configs/rollup.dev.js && mocha",
15 "test-debug": "rollup -c ./configs/rollup.dev.js && mocha --inspect-brk"
16 },
17 "keywords": [
18 "frp",
19 "bacon",
20 "bacon.js",
21 "kefir",
22 "kefir.js",
23 "functional",
24 "reactive",
25 "stream",
26 "streams",
27 "EventStream",
28 "Rx",
29 "RxJs",
30 "Observable"
31 ],
32 "author": "Roman Pominov <rpominov@gmail.com>",
33 "homepage": "https://github.com/kefirjs/kefir",
34 "repository": {
35 "type": "git",
36 "url": "http://github.com/kefirjs/kefir.git"
37 },
38 "license": "MIT",
39 "devDependencies": {
40 "@reactivex/rxjs": "5.3.0",
41 "babel-preset-es2015-loose-rollup": "7.0.0",
42 "chai": "^4.1.2",
43 "chai-kefir": "^2.0.1",
44 "flow-bin": "^0.80.0",
45 "inquirer": "0.10.1",
46 "mocha": "^4.0.1",
47 "prettier": "1.0.2",
48 "pug": "2.0.0-beta11",
49 "rollup": "0.41.6",
50 "rollup-plugin-babel": "2.7.1",
51 "rollup-plugin-commonjs": "8.0.2",
52 "rollup-plugin-node-resolve": "3.0.0",
53 "rollup-plugin-uglify": "1.0.1",
54 "semver": "5.3.0",
55 "shelljs": "0.5.3",
56 "sinon": "1.17.1",
57 "sinon-chai": "^2.14.0",
58 "transducers-js": "0.4.174",
59 "transducers.js": "0.3.2",
60 "zen-observable": "0.5.1"
61 },
62 "dependencies": {
63 "symbol-observable": "1.0.4"
64 }
65}