-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
77 lines (77 loc) · 1.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
{
"name": "get-value",
"description": "Use property paths like 'a.b.c' to get a nested value from an object. Even works when keys have dots in them (no other dot-prop library can do this!).",
"version": "3.0.1",
"homepage": "https://github.com/jonschlinkert/get-value",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/get-value",
"bugs": {
"url": "https://github.com/jonschlinkert/get-value/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=6.0"
},
"scripts": {
"test": "nyc --reporter=text --reporter=html mocha"
},
"dependencies": {
"isobject": "^3.0.1"
},
"devDependencies": {
"arr-reduce": "^1.0.1",
"benchmarked": "^2.0.0",
"dot-prop": "^4.2.0",
"getobject": "^0.1.0",
"glob": "^7.1.2",
"gulp-format-md": "^1.0.0",
"micromatch": "^3.1.5",
"minimist": "^1.2.0",
"mocha": "^3.5.3",
"nyc": "^11.4.1",
"object-path": "^0.11.4",
"write": "^1.0.3"
},
"keywords": [
"get",
"key",
"nested",
"object",
"path",
"paths",
"prop",
"properties",
"property",
"props",
"segment",
"value",
"values"
],
"verb": {
"run": true,
"toc": "collapsible",
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"has-any",
"has-any-deep",
"has-value",
"set-value",
"unset-value"
]
},
"lint": {
"reflinks": true
}
}
}