-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.74 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "callbag-common",
"version": "0.1.8",
"description": "common callbags",
"main": "dist/es5/index.js",
"module": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"sideEffects": false,
"files": [
"dist/es6",
"dist/es5"
],
"scripts": {
"test": "ts-node --project conf/typescript/test.json test.ts",
"build": "tsc -p conf/typescript/es5.json && tsc -p conf/typescript/es6.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loreanvictor/callbag-common.git"
},
"keywords": [
"callbag",
"reactive"
],
"author": "Eugene Ghanizadeh Khoub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/loreanvictor/callbag-common/issues"
},
"homepage": "https://github.com/loreanvictor/callbag-common#readme",
"dependencies": {
"callbag": "^1.4.0",
"callbag-combine": "^1.2.0",
"callbag-debounce": "^2.1.3",
"callbag-expr": "^0.2.0",
"callbag-filter": "^1.1.0",
"callbag-flatten": "^1.7.0",
"callbag-from-event": "^1.3.0",
"callbag-from-promise": "^1.3.0",
"callbag-interval": "^1.2.0",
"callbag-map": "^1.1.0",
"callbag-merge": "^3.2.2",
"callbag-of": "^2.0.0",
"callbag-pipe": "^1.2.0",
"callbag-scan": "^1.1.0",
"callbag-subscribe": "^1.5.1",
"callbag-take": "^1.5.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"callbag-subject": "^2.1.0",
"chai": "^4.2.0",
"eslint": "^7.15.0",
"mocha": "^8.2.1",
"ts-node": "^9.0.0",
"tslib": "^2.0.3",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
}
}