-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
48 lines (48 loc) · 1004 Bytes
/
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
{
"name": "object-path",
"description": "Access deep object properties using a path",
"version": "0.11.8",
"author": {
"name": "Mario Casciaro"
},
"homepage": "https://github.com/mariocasciaro/object-path",
"repository": {
"type": "git",
"url": "git://github.com/mariocasciaro/object-path.git"
},
"engines": {
"node": ">= 10.12.0"
},
"devDependencies": {
"@mariocasciaro/benchpress": "^0.1.3",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"mocha": "^9.1.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0"
},
"scripts": {
"test": "mocha test.js",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc npm test",
"benchmark": "node benchmark.js"
},
"keywords": [
"deep",
"path",
"access",
"bean",
"get",
"property",
"dot",
"prop",
"object",
"obj",
"notation",
"segment",
"value",
"nested",
"key"
],
"license": "MIT"
}