-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.07 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
{
"name": "ki-map",
"version": "1.0.2",
"description": "\"Keyed and Indexed Map\", a pure javascript object that simulates the native 'Map' object with indexing features and others useful methods.",
"main": "index.js",
"scripts": {
"test": "mocha test/tests1.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giacomoratta/ki-map.git"
},
"author": "Giacomo Ratta",
"license": "MIT",
"bugs": {
"url": "https://github.com/giacomoratta/ki-map/issues"
},
"homepage": "https://github.com/giacomoratta/ki-map#readme",
"devDependencies": {
"mocha": "^4.0.1"
},
"engines": {
"node": ">= 5.0.0"
},
"keywords": [
"map",
"index",
"indexing",
"array",
"keys",
"key",
"associative",
"data",
"structure",
"data-structure",
"indexed",
"linked",
"list",
"map",
"array",
"collection",
"doubly-linked",
"linkedlist",
"linkedmap",
"sorted",
"ordered",
"vector",
"label",
"labeling",
"es6",
"class",
"pure",
"javascript"
]
}