opusdev/vector-similarity-api
1
1{2 "name": "es-define-property",3 "version": "1.0.1",4 "description": "`Object.defineProperty`, but not IE 8's broken one.",5 "main": "index.js",6 "types": "./index.d.ts",7 "exports": {8 ".": "./index.js",9 "./package.json": "./package.json"10 },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 --ext=js,mjs .",18 "postlint": "tsc -p .",19 "pretest": "npm run lint",20 "tests-only": "nyc tape 'test/**/*.js'",21 "test": "npm run tests-only",22 "posttest": "npx npm@'>= 10.2' audit --production",23 "version": "auto-changelog && git add CHANGELOG.md",24 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""25 },26 "repository": {27 "type": "git",28 "url": "git+https://github.com/ljharb/es-define-property.git"29 },30 "keywords": [31 "javascript",32 "ecmascript",33 "object",34 "define",35 "property",36 "defineProperty",37 "Object.defineProperty"38 ],39 "author": "Jordan Harband <ljharb@gmail.com>",40 "license": "MIT",41 "bugs": {42 "url": "https://github.com/ljharb/es-define-property/issues"43 },44 "homepage": "https://github.com/ljharb/es-define-property#readme",45 "devDependencies": {46 "@ljharb/eslint-config": "^21.1.1",47 "@ljharb/tsconfig": "^0.2.2",48 "@types/gopd": "^1.0.3",49 "@types/tape": "^5.6.5",50 "auto-changelog": "^2.5.0",51 "encoding": "^0.1.13",52 "eslint": "^8.8.0",53 "evalmd": "^0.0.19",54 "gopd": "^1.2.0",55 "in-publish": "^2.0.1",56 "npmignore": "^0.3.1",57 "nyc": "^10.3.2",58 "safe-publish-latest": "^2.0.0",59 "tape": "^5.9.0",60 "typescript": "next"61 },62 "engines": {63 "node": ">= 0.4"64 },65 "testling": {66 "files": "test/index.js"67 },68 "auto-changelog": {69 "output": "CHANGELOG.md",70 "template": "keepachangelog",71 "unreleased": false,72 "commitLimit": false,73 "backfillLimit": false,74 "hideCredit": true75 },76 "publishConfig": {77 "ignore": [78 ".github/workflows"79 ]80 }81}82 