-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.13 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
{
"name": "rxjs-collection",
"description": "RXJS enhanced Array, Map, WeakMap, Set and WeakSet",
"version": "2.1.2",
"license": "MIT",
"type": "module",
"keywords":
[
"reactive",
"hyperactive",
"array",
"map",
"weakmap",
"set",
"weakset"
],
"author":
{
"name": "Henry Ruhs",
"url": "https://henryruhs.com"
},
"bugs":
{
"url": "https://github.com/henryruhs/rxjs-collection/issues"
},
"repository":
{
"type": "git",
"url": "https://github.com/henryruhs/rxjs-collection.git"
},
"peerDependencies":
{
"rxjs": "^7"
},
"devDependencies":
{
"rxjs": "^7",
"@isnotdefined/eslint-config": "9.7.1",
"@types/chai": "4.3.8",
"@types/mocha": "10.0.2",
"@types/node": "20.8.6",
"chai": "4.3.10",
"eslint": "8.51.0",
"mocha": "10.2.0",
"rollup": "4.1.0",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-ts": "3.4.5",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"scripts":
{
"build": "rollup --config=rollup.config.js",
"lint": "eslint src tests --ext=.ts",
"fix": "npm run lint -- --fix",
"test": "mocha"
},
"main": "index.cjs",
"module": "index.mjs"
}