@zodash/get
Version:
Get the value at path of object.
78 lines (77 loc) • 1.53 kB
JSON
{
"name": "@zodash/get",
"version": "1.2.7",
"description": "Get the value at path of object.",
"keywords": [
"get",
"set",
"lodash",
"underscore"
],
"author": "zero <tobewhatwewant@gmail.com>",
"homepage": "https://github.com/zcorky/zodash#readme",
"license": "MIT",
"main": "lib/get.js",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"jest": {
"roots": [
"__tests__"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".*\\.(spec|test)\\.(ts|tsx)$",
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 60,
"lines": 60,
"statements": -10
}
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zcorky/zodash.git"
},
"scripts": {
"build": "yarn clean && tsc",
"watch": "yarn clean && tsc -w",
"clean": "rm -rf lib",
"test": "jest -w 1",
"coverage": "codecov"
},
"bugs": {
"url": "https://github.com/zcorky/zodash/issues"
},
"devDependencies": {
"@zcorky/deep-equal": "^0.0.1"
},
"dependencies": {
"@zcorky/is": "^1.0.6",
"@zodash/to-path": "^0.1.11"
}
}