-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
64 lines (64 loc) · 2.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "kefir",
"version": "3.8.8",
"description": "Reactive Programming library for JavaScript inspired by Bacon.js and RxJS with focus on high performance and low memory usage",
"main": "dist/kefir.js",
"module": "dist/kefir.esm.js",
"scripts": {
"prettify": "prettier --write '{src,configs,test}/**/*.js' '*.js'",
"prettier-check": "prettier --list-different '{src,configs,test}/**/*.js' '*.js'",
"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/",
"build-docs": "node configs/docs.js",
"deploy-docs": "git checkout gh-pages && git merge master && npm run build && git add . && git commit -m 'build all' && git push && git checkout master",
"clean": "rm -r dist index.html || true",
"build": "npm run clean && npm run build-js && npm run build-docs",
"test": "npm run prettier-check && rollup -c ./configs/rollup.dev.js && mocha && flow check",
"test-only": "rollup -c ./configs/rollup.dev.js && mocha",
"test-debug": "rollup -c ./configs/rollup.dev.js && mocha --inspect-brk"
},
"keywords": [
"frp",
"bacon",
"bacon.js",
"kefir",
"kefir.js",
"functional",
"reactive",
"stream",
"streams",
"EventStream",
"Rx",
"RxJs",
"Observable"
],
"author": "Roman Pominov <[email protected]>",
"homepage": "https://github.com/kefirjs/kefir",
"repository": {
"type": "git",
"url": "http://github.com/kefirjs/kefir.git"
},
"license": "MIT",
"devDependencies": {
"babel-preset-es2015-loose-rollup": "^7.0.0",
"chai": "^4.2.0",
"chai-kefir": "^2.0.5",
"flow-bin": "^0.100.0",
"inquirer": "^6.3.1",
"mocha": "^10.0.0",
"prettier": "^1.18.2",
"pug": "^3.0.2",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^1.0.2",
"rxjs": "^6.5.2",
"semver": "^6.1.1",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"symbol-observable": "^1.2.0",
"transducers-js": "^0.4.174",
"transducers.js": "^0.3.2",
"zen-observable": "^0.8.14"
}
}