-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.11 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.11 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": "expand-value",
"version": "3.0.0",
"description": "Get deeply nested values from an object, like dot-prop and get-value, but with support for advanced features like bracket-notation and more.",
"repository": "jonschlinkert/expand-value",
"bugs": {
"url": "https://github.com/jonschlinkert/expand-value/issues"
},
"homepage": "https://github.com/jonschlinkert/expand-value",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"funding": {
"url": "https://github.com/sponsors/jonschlinkert"
},
"license": "MIT",
"scripts": {
"cover": "nyc --all --reporter=text --reporter=html --include=src npm run test",
"test": "ts-mocha -r esbuild-register 'test/*.ts'",
"tsup": "npx tsup"
},
"module": "dist/index.mjs",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"dependencies": {
"intl-segmenter": "^1.0.0",
"is-number": "^7.0.0"
},
"devDependencies": {
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"esbuild-register": "^3.6.0",
"eslint": "^8.57.0",
"gulp-format-md": "^2.0.0",
"nyc": "^17.1.0",
"prettier": "^3.5.3",
"ts-mocha": "^11.1.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"keywords": [
"accessor",
"dot-prop",
"expand-value",
"expand",
"get",
"get-value",
"key",
"nested",
"object",
"path",
"paths",
"prop",
"properties",
"property",
"property access",
"props",
"resolve-value",
"segment",
"set-value",
"value",
"values"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
},
"related": {
"list": [
"get-value",
"eval-estree-expressions",
"dry"
]
},
"reflinks": [
"dot-prop",
"get-value"
]
}
}