expand-value
Version:
Get deeply nested values from an object, like dot-prop and get-value, but with support for advanced features like bracket-notation and more.
132 lines (131 loc) • 2.95 kB
JSON
{
"name": "expand-value",
"version": "5.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": {
"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"
},
"module": "dist/index.mjs",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": {
"import": "./dist/src/*.mjs",
"require": "./dist/src/*.js"
},
"./nodes": {
"import": "./dist/src/nodes/index.mjs",
"require": "./dist/src/nodes/index.js"
},
"./nodes/*": {
"import": "./dist/src/nodes/*.mjs",
"require": "./dist/src/nodes/*.js"
},
"./async": {
"import": "./dist/src/async/index.mjs",
"require": "./dist/src/async/index.js"
},
"./async/*": {
"import": "./dist/src/async/*.mjs",
"require": "./dist/src/async/*.js"
}
},
"dependencies": {
"intl-segmenter": "^1.0.0",
"is-number": "^7.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.3",
"eslint": "^10.5.0",
"globals": "^17.6.0",
"gulp-format-md": "^2.0.0",
"mocha": "^11.7.6",
"nyc": "^18.0.0",
"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": [
"accessor",
"dot-prop",
"expand",
"expand-value",
"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",
"data": {
"workflow": "test.yml"
},
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
},
"related": {
"list": [
"eval-estree-expression",
"whence",
"get-value",
"set-value",
"dry"
]
},
"reflinks": [
"dot-prop",
"get-value",
"dry",
"index",
"key",
"setting",
"verb",
"verb-generate-readme",
"whence"
]
}
}