-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 830 Bytes
/
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
{
"author": "Francisco Tavares de Lima Neto",
"deprecated": false,
"description": "Callbag operator that maps over values that satisfies a predicate. AKA filterMap",
"dependencies": {
"callbag": "^1.2.0",
"callbag-filter": "^1.1.0",
"callbag-map": "^1.1.0"
},
"devDependencies": {
"rollup": "^1.18.0",
"tape": "^4.11.0"
},
"keywords": [
"callbag"
],
"license": "MIT",
"main": "index.cjs.js",
"module": "index.js",
"types": "index.d.ts",
"name": "callbag-map-when",
"repository": {
"type": "git",
"url": "git+/~https://github.com/franciscotln/callbag-map-when.git"
},
"scripts": {
"build": "rollup $npm_package_module -o $npm_package_main --f cjs",
"pretest": "npm run build",
"test": "tape test.js",
"prepare": "npm test"
},
"version": "2.1.0"
}