-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.95 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
65
66
{
"name": "pipe-me",
"version": "1.3.3",
"description": "Pipeable programming for cleaner code. Uses callbags and pipeline operator.",
"main": "index.js",
"repository": "git@github.com:sartaj/pipe-me.git",
"author": "Sartaj <sartaj@sartaj.me>",
"license": "MIT",
"peerDependencies": {
"@babel/plugin-proposal-pipeline-operator": "^7.0.0-beta.39"
},
"scripts": {
"test": "ava",
"watch": "ava --watch",
"coverage": "nyc --reporter=lcov --reporter=text-lcov npm test",
"example": "yarn build-examples && http-server examples/convert-fruit",
"build-examples": "browserify docs/examples/convert-fruit/main.js -o docs/examples/convert-fruit/bundle.js -t [ babelify --presets [ @babel/preset-env ] --plugins [ @babel/plugin-proposal-pipeline-operator ] ]"
},
"keywords": [
"callbag",
"pipeline",
"pipeline operator",
"observable",
"iterable",
"streams"
],
"files": [
"index.js",
"create.js",
"side-effects.js",
"combiners.js",
"filters.js",
"transforms.js",
"README.md"
],
"dependencies": {
"callbag": "1.0.x",
"callbag-combine": "1.0.x",
"callbag-concat": "1.0.x",
"callbag-filter": "1.0.x",
"callbag-flatten": "1.0.x",
"callbag-for-each": "1.0.x",
"callbag-from-event": "1.0.x",
"callbag-from-iter": "1.0.x",
"callbag-from-obs": "1.0.x",
"callbag-from-promise": "1.0.x",
"callbag-map": "1.0.x",
"callbag-merge": "1.1.x",
"callbag-scan": "1.0.x",
"callbag-share": "1.0.x",
"callbag-skip": "1.0.x",
"callbag-take": "1.0.x"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.39",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0-beta.39",
"@babel/preset-env": "^7.0.0-beta.39",
"ava": "^0.25.0",
"babelify": "git+https://github.com/ladjs/babelify.git#ladjs/babelify",
"browser-env": "^3.2.5",
"browserify": "^16.0.0",
"http-server": "^0.11.1",
"np": "^2.20.1",
"nyc": "^11.4.1"
}
}