-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
55 lines (55 loc) · 1.15 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
{
"name": "keypather",
"version": "3.1.0",
"description": "Get or set a deep value using a keypath string. Supports bracket and dot notation",
"main": "index.js",
"scripts": {
"lint": "standard",
"test-watch": "jest --coverage --watch",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/tjmehta/value-for-keypath.git"
},
"keywords": [
"keypath",
"deep",
"get",
"set",
"check",
"existance",
"value",
"traversal",
"dot",
"bracket",
"notation",
"path",
"array",
"object",
"node",
"module",
"key",
"keys",
"string"
],
"author": "Tejesh Mehta",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjmehta/value-for-keypath/issues"
},
"homepage": "https://github.com/tjmehta/value-for-keypath",
"dependencies": {
"101": "^1.6.2",
"debug": "^3.1.0",
"escape-string-regexp": "^1.0.5",
"shallow-clone": "^3.0.0",
"string-reduce": "^1.0.0"
},
"devDependencies": {
"deep-freeze-strict": "^1.1.1",
"fast-deep-equal": "^3.0.0",
"jest": "^21.2.1",
"standard": "^12.0.1"
}
}