-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "callbag-timer",
"version": "1.0.0",
"description": "👜 Callbag source that after given duration, emit numbers in sequence every specified duration.",
"main": "dist/callbag-timer.js",
"module": "dist/callbag-timer.esm.js",
"files": [
"dist"
],
"scripts": {
"pretest": "npm run build",
"test": "jest --env=node",
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepare": "npm test"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/Andarist/callbag-timer.git"
},
"keywords": [
"callbag",
"callbags",
"timer"
],
"author": "Mateusz Burzyński <mateuszburzynski@gmail.com> (/~https://github.com/Andarist)",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/Andarist/callbag-timer/issues"
},
"homepage": "/~https://github.com/Andarist/callbag-timer#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"callbag-for-each": "^1.1.0",
"callbag-interval": "^1.1.0",
"callbag-pipe": "^1.1.1",
"callbag-take-until": "^1.1.0",
"husky": "^1.1.0",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3"
}
}