-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 816 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 816 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
{
"name": "lodash-getpath",
"version": "0.2.4",
"description": "A lodash plugin/extension/mixin for _.get, which allows intuitive paths eg. 'name[0,1]' and 'a.b[].x[-1].z'",
"main": "src/getPath.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crazy4groovy/lodash.getPath.git"
},
"keywords": [
"modules",
"util",
"lodash",
"extension",
"mixin",
"lodash-mixin"
],
"author": "Steven Olsen @crazy4groovy",
"license": "MIT",
"bugs": {
"url": "https://github.com/crazy4groovy/lodash.getPath/issues"
},
"homepage": "https://github.com/crazy4groovy/lodash.getPath#readme",
"peerDependencies": {
"lodash": "^4.0.0"
},
"devDependencies": {
"lodash": "^4.0.0",
"mocha": "^2.3.3"
}
}