-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 796 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 796 Bytes
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
{
"name": "many-keys-map",
"version": "3.0.3",
"description": "A `Map` subclass with support for multiple keys for one entry.",
"keywords": [
"any",
"key",
"keys",
"many",
"map",
"multi",
"multimap",
"multiple"
],
"repository": "fregante/many-keys-map",
"funding": "https://github.com/sponsors/fregante",
"license": "MIT",
"author": "Federico Brigante <me@fregante.com> (https://fregante.com)",
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"files": [
"index.d.ts",
"index.js"
],
"scripts": {
"test": "tsc && xo && vitest"
},
"xo": {
"rules": {
"no-new": 0
}
},
"devDependencies": {
"@sindresorhus/tsconfig": "^7.0.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4",
"xo": "^1.0.5"
},
"engines": {
"node": ">=18"
}
}