ts-has-own-property
Version:
Fix for Object.hasOwnProperty, which normally just returns a boolean, which is not good when you care about strong typing
84 lines (83 loc) • 1.94 kB
JSON
{
"version": "1.0.3",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"homepage": "https://github.com/funtal/has-own-property#readme",
"description": "Fix for Object.hasOwnProperty, which normally just returns a boolean, which is not good when you care about strong typing",
"repository": {
"type": "git",
"url": "git+https://github.com/funtal/has-own-property.git"
},
"bugs": {
"url": "https://github.com/funtal/has-own-property/issues"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "ts-has-own-property",
"author": "playerony",
"module": "dist/has-own-property.esm.js",
"size-limit": [
{
"path": "dist/has-own-property.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/has-own-property.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"husky": "4.3.6",
"size-limit": "^7.0.8",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.7.3"
},
"keywords": [
"Object",
"funtal",
"object",
"playerony",
"type-safe",
"functional",
"Typescript",
"typescript",
"hasOwnProperty",
"has-own-property-ts",
"ts-has-own-property",
"Object.hasOwnProperty",
"object-has-own-property",
"type-safe-has-own-property",
"type-safe-has-own-property",
"type-safe-object-property-keys",
"type-safe-object-property-keys-ts"
]
}