CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json92 linesDownload Raw Back to hasown
1{2	"name": "hasown",3	"version": "2.0.4",4	"description": "A robust, ES3 compatible, \"has own property\" predicate.",5	"main": "index.js",6	"exports": {7		".": "./index.js",8		"./package.json": "./package.json"9	},10	"types": "index.d.ts",11	"sideEffects": false,12	"scripts": {13		"prepack": "npmignore --auto --commentLines=autogenerated",14		"prepublish": "not-in-publish || npm run prepublishOnly",15		"prepublishOnly": "safe-publish-latest",16		"prelint": "evalmd README.md",17		"lint": "eslint .",18		"postlint": "npm run tsc",19		"pretest": "npm run lint",20		"tsc": "tsc -p .",21		"posttsc": "attw -P",22		"tests-only": "nyc tape 'test/**/*.js'",23		"test": "npm run tests-only",24		"posttest": "npx npm@\">= 10.2\" audit --production",25		"version": "auto-changelog && git add CHANGELOG.md",26		"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""27	},28	"repository": {29		"type": "git",30		"url": "git+https://github.com/inspect-js/hasOwn.git"31	},32	"keywords": [33		"has",34		"hasOwnProperty",35		"hasOwn",36		"has-own",37		"own",38		"has",39		"property",40		"in",41		"javascript",42		"ecmascript"43	],44	"author": "Jordan Harband <ljharb@gmail.com>",45	"license": "MIT",46	"bugs": {47		"url": "https://github.com/inspect-js/hasOwn/issues"48	},49	"homepage": "https://github.com/inspect-js/hasOwn#readme",50	"dependencies": {51		"function-bind": "^1.1.2"52	},53	"devDependencies": {54		"@arethetypeswrong/cli": "^0.18.2",55		"@ljharb/eslint-config": "^22.2.3",56		"@ljharb/tsconfig": "^0.3.2",57		"@types/function-bind": "^1.1.10",58		"@types/tape": "^5.8.1",59		"auto-changelog": "^2.5.1",60		"eslint": "^10.4.0",61		"evalmd": "^0.0.19",62		"in-publish": "^2.0.1",63		"jiti": "^0.0.0",64		"mock-property": "^1.1.0",65		"npmignore": "^0.3.5",66		"nyc": "^10.3.2",67		"safe-publish-latest": "^2.0.0",68		"tape": "^5.9.0",69		"typescript": "next"70	},71	"engines": {72		"node": ">= 0.4"73	},74	"testling": {75		"files": "test/index.js"76	},77	"auto-changelog": {78		"output": "CHANGELOG.md",79		"template": "keepachangelog",80		"unreleased": false,81		"commitLimit": false,82		"backfillLimit": false,83		"hideCredit": true84	},85	"publishConfig": {86		"ignore": [87			".github/workflows",88			"test"89		]90	}91}92