-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
{
"name": "callbag-take-while",
"version": "2.0.0",
"description": "👜 Callbag operator which emits values emitted by the source as long as each value satisfies the given predicate, and then completes as soon as predicate is not satisfied.",
"main": "./dist/callbag-take-while.cjs.js",
"module": "./dist/callbag-take-while.esm.js",
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"test": "jest --env=node",
"prebuild": "rimraf dist",
"build": "rollup -c",
"preversion": "npm test",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andarist/callbag-take-while.git"
},
"keywords": [
"callbag",
"callbags"
],
"author": "Mateusz Burzyński <[email protected]> (https://github.com/Andarist)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Andarist/callbag-take-while/issues"
},
"homepage": "https://github.com/Andarist/callbag-take-while#readme",
"dependencies": {
"callbag": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"callbag-for-each": "^1.1.0",
"callbag-from-iter": "^1.2.0",
"callbag-pipe": "^1.2.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.3",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2"
}
}