-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 955 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
34
35
36
37
38
{
"name": "callbag-debounce",
"version": "4.0.0",
"description": "debounce operator for callbag",
"repository": {
"type": "git",
"url": "git+https://github.com/atomrc/callbag-debounce.git"
},
"main": "dist/debounce.js",
"module": "es/debounce.js",
"types": "dist/debounce.d.ts",
"files": [
"dist",
"es"
],
"scripts": {
"test": "TS_NODE_PROJECT=./tsconfig.ci.json tape -r ts-node/register -- tests/*",
"typecheck": "tsc -P ./tsconfig.ci.json --noEmit",
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "tsc --outDir dist/",
"build:es": "tsc --outDir es/ --module es2015",
"prepare": "npm run build"
},
"author": "Thomas Belin",
"keywords": [
"callbag"
],
"devDependencies": {
"@types/tape": "^4.13.0",
"callbag-mock": "^2.3.0",
"tape": "^5.2.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"dependencies": {
"callbag": "^1.4.0"
}
}