-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 961 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 961 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
44
45
46
47
48
49
50
{
"name": "vget",
"version": "1.0.0",
"description": "Gets a value from a collection that strictly or loosely equals another value.",
"keywords": [
"get",
"value",
"loose",
"equals",
"collection",
"array",
"iterator",
"map",
"object",
"set",
"string",
"typed array",
"WeakSet"
],
"author": "John Lamansky",
"license": "MIT",
"homepage": "https://github.com/lamansky/vget",
"repository": "lamansky/vget",
"main": "index.js",
"files": [],
"engines": {
"node": ">=8.3.0"
},
"dependencies": {
"equals": "^1.0.5",
"is-instance-of": "^1.0.1",
"iterify": "^1.0.0",
"otherwise": "^1.0.0",
"values-iterator": "^1.2.0",
"xfn": "^1.0.0"
},
"devDependencies": {
"eslint-config-lamansky": "^1.0.0",
"mocha": "^5.2.0"
},
"scripts": {
"test": "mocha"
},
"eslintConfig": {
"extends": "lamansky",
"env": {
"mocha": true
}
}
}