-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 806 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
39
40
41
42
{
"name": "is-observable",
"version": "3.0.0",
"description": "Check if a value is an Observable",
"license": "MIT",
"repository": "sindresorhus/is-observable",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"engines": {
"node": ">=14.16"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"observable",
"observables",
"is",
"check",
"detect",
"type"
],
"devDependencies": {
"ava": "^4.3.0",
"indefinite-observable": "^1.0.1",
"most": "^1.9.0",
"rxjs": "^7.5.5",
"xo": "^0.49.0",
"xstream": "^11.14.0",
"zen-observable": "^0.8.15"
}
}