-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.24 KB
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
89
90
91
92
93
94
95
96
97
{
"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 we tested does this, or does it correctly).",
"version": "4.1.0",
"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",
"scripts": {
"bench": "node benchmark",
"clean": "rm -rf dist",
"cover": "nyc --all --reporter=text --reporter=html --include=src npm run test",
"eslint": "npx eslint --ext .ts .",
"test": "mocha --import=tsx \"test/**/*.test.ts\" --exit",
"tsup": "npm run clean && npx tsup"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "index.d.ts",
"exports": {
"./package": "./package.json",
".": {
"types": "./index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.3",
"arr-reduce": "^1.0.1",
"dot-prop": "^9.0.0",
"dotty": "^0.1.2",
"eslint": "^10.5.0",
"getobject": "^1.1.1",
"globals": "^17.6.0",
"gulp-format-md": "^2.0.0",
"micromatch": "^4.0.8",
"minimist": "^1.2.8",
"mocha": "^11.7.6",
"nyc": "^18.0.0",
"object-path": "^0.11.8",
"prettier": "^3.8.4",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0"
},
"keywords": [
"get",
"key",
"nested",
"object",
"path",
"paths",
"prop",
"properties",
"property",
"props",
"segment",
"value",
"values"
],
"verb": {
"run": true,
"toc": "collapsible",
"layout": "default",
"data": {
"workflow": "test.yml"
},
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"has-any",
"has-any-deep",
"has-value",
"set-value",
"unset-value"
]
},
"lint": {
"reflinks": true
}
}
}