Files
discord-clone/node_modules/dot-prop/package.json
2023-01-03 09:29:04 -06:00

50 lines
927 B
JSON

{
"name": "dot-prop",
"version": "7.2.0",
"description": "Get, set, or delete a property from a nested object using a dot path",
"license": "MIT",
"repository": "sindresorhus/dot-prop",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"test": "xo && ava && tsc",
"bench": "node benchmark.js"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"object",
"prop",
"property",
"dot",
"path",
"get",
"set",
"delete",
"access",
"notation",
"dotty"
],
"dependencies": {
"type-fest": "^2.11.2"
},
"devDependencies": {
"ava": "^4.0.1",
"benchmark": "^2.1.4",
"expect-type": "^0.13.0",
"typescript": "^4.5.5",
"xo": "^0.48.0"
}
}