forked from jonschlinkert/get-value
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 1.87 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
{
"name": "@d_hristov/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.4",
"homepage": "https://github.com/dobromir-hristov/get-value",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "dobromir-hristov/get-value",
"bugs": {
"url": "https://github.com/dobromir-hristov/get-value/issues"
},
"license": "MIT",
"files": [
"index.js",
"dist/*"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"engines": {
"node": ">=6.0"
},
"scripts": {
"test": "nyc --reporter=text --reporter=html mocha",
"build": "bili index.js --format es,cjs",
"release": "standard-version"
},
"dependencies": {
"isobject": "^4.0.0"
},
"devDependencies": {
"arr-reduce": "^1.0.1",
"benchmarked": "^2.0.0",
"bili": "^4.8.1",
"dot-prop": "^5.2.0",
"getobject": "^0.1.0",
"glob": "^7.1.2",
"gulp-format-md": "^2.0.0",
"micromatch": "^4.0.2",
"minimist": "^1.2.0",
"mocha": "^6.2.2",
"nyc": "^15.0.0",
"object-path": "^0.11.4",
"standard-version": "^7.0.1",
"write": "^2.0.0"
},
"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
}
},
"standard-version": {
"scripts": {
"prerelease": "npm run build"
}
}
}