-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
121 lines (121 loc) · 2.58 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "mnemonist",
"version": "0.40.0-rc1",
"description": "Curated collection of data structures for the JavaScript/TypeScript.",
"scripts": {
"lint": "eslint --cache --ext .js,.mjs ./*.js ./*.mjs ./utils ./test",
"lint:fix": "eslint --cache --fix --ext .js,.mjs ./*.js ./*.mjs ./utils ./test",
"prepublishOnly": "npm run lint && npm test && npm run test:exports",
"test": "mocha",
"test:exports": "cd test/exports && npm i && npm run test"
},
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.js",
"import": "./index.mjs"
},
"./*": {
"types": "./*.d.ts",
"require": "./*.js"
},
"./*.js": {
"types": "./*.d.ts",
"require": "./*.js"
}
},
"files": [
"sort",
"utils",
"*.d.ts",
"*.js",
"*.mjs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yomguithereal/mnemonist.git"
},
"keywords": [
"bag",
"bimap",
"bit array",
"bit set",
"bit vector",
"bitset",
"bk tree",
"burkhard-keller tree",
"cache",
"circular buffer",
"counter",
"data structures",
"default map",
"deque",
"disjoint set",
"fibonacci heap",
"fuzzy map",
"hashed array tree",
"heap",
"interval tree",
"inverted index",
"kd tree",
"linked list",
"lru",
"lru cache",
"multimap",
"multiset",
"passjoin",
"queue",
"sparse map",
"sparse set",
"stack",
"structures",
"suffix tree",
"symspell",
"trie",
"union find",
"vantage point tree",
"vector",
"vp tree"
],
"author": {
"name": "Guillaume Plique",
"url": "http://github.com/Yomguithereal"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yomguithereal/mnemonist/issues"
},
"homepage": "https://github.com/yomguithereal/mnemonist#readme",
"dependencies": {
"obliterator": "^2.0.4"
},
"devDependencies": {
"@yomguithereal/eslint-config": "^4.4.0",
"asciitree": "^1.0.2",
"damerau-levenshtein": "^1.0.8",
"eslint": "^8.2.0",
"leven": "^3.1.0",
"lodash": "^4.17.21",
"matcha": "^0.7.0",
"mocha": "^9.1.3",
"pandemonium": "^2.0.0",
"seedrandom": "^3.0.5",
"static-kdtree": "^1.0.2"
},
"eslintConfig": {
"extends": "@yomguithereal/eslint-config",
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"forOf": true
},
"sourceType": "module"
},
"rules": {
"no-new": 0
}
}
}