-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 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
{
"name": "kget",
"version": "1.1.0",
"description": "Uses one or more keys to retrieve a value from a Map, Object, or other collection. Supports nesting, loose key matching, and more.",
"keywords": [
"get",
"nested",
"key",
"chain",
"value",
"collection",
"array",
"iterator",
"map",
"object",
"set",
"typed array",
"WeakMap"
],
"author": {
"name": "Fr. John Lamansky",
"url": "lamansky.com"
},
"license": "MIT",
"homepage": "https://github.com/lamansky/kget",
"repository": "lamansky/kget",
"main": "index.js",
"files": [],
"engines": {
"node": ">=8.3.0"
},
"dependencies": {
"2": "^3.0.0",
"arrify": "^2.0.1",
"concat-map": "0.0.1",
"entries-iterator": "^1.6.0",
"equals": "^1.0.5",
"is-instance-of": "^1.0.2",
"otherwise": "^2.0.0",
"sbo": "^1.1.0",
"split-string": "^6.1.0",
"xfn": "^1.0.0"
},
"devDependencies": {
"eslint-config-lamansky": "^2.0.0",
"mocha": "^6.2.2"
},
"scripts": {
"test": "mocha"
},
"eslintConfig": {
"extends": "lamansky",
"env": {
"mocha": true
}
}
}