forked from staltz/callbag-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "callbag-basics",
"version": "3.0.0",
"description": "Basic callbag factories and operators to get started with",
"repository": {
"type": "git",
"url": "git+https://github.com/staltz/callbag-basics.git"
},
"main": "index.js",
"scripts": {
"bundle": "$(npm bin)/browserify index.js -o dist/bundle.js",
"bundle.min": "node minify.js",
"test": "tape test.js"
},
"author": "staltz.com",
"license": "MIT",
"keywords": [
"callbag",
"callback",
"standard",
"spec",
"observable",
"iterable"
],
"dependencies": {
"callbag": "1.0.x",
"callbag-for-each": "1.0.x",
"callbag-from-obs": "1.1.x",
"callbag-from-iter": "1.0.x",
"callbag-from-event": "1.0.x",
"callbag-from-promise": "1.0.x",
"callbag-interval": "1.0.x",
"callbag-map": "1.0.x",
"callbag-scan": "1.0.x",
"callbag-flatten": "1.0.x",
"callbag-take": "1.0.x",
"callbag-skip": "1.0.x",
"callbag-filter": "1.0.x",
"callbag-merge": "2.0.x",
"callbag-concat": "1.0.x",
"callbag-combine": "1.0.x",
"callbag-share": "1.0.x",
"callbag-pipe": "1.1.x"
},
"devDependencies": {
"browserify": "^15.2.0",
"google-closure-compiler-js": "^20170910.0.0",
"tape": "^4.8.0",
"uglify-js": "^3.3.8"
}
}