| 1 | {
|
|---|
| 2 | "name": "call-bind",
|
|---|
| 3 | "version": "1.0.9",
|
|---|
| 4 | "description": "Robustly `.call.bind()` a function",
|
|---|
| 5 | "main": "index.js",
|
|---|
| 6 | "exports": {
|
|---|
| 7 | ".": "./index.js",
|
|---|
| 8 | "./callBound": "./callBound.js",
|
|---|
| 9 | "./package.json": "./package.json"
|
|---|
| 10 | },
|
|---|
| 11 | "scripts": {
|
|---|
| 12 | "prepack": "npmignore --auto --commentLines=auto",
|
|---|
| 13 | "prepublish": "not-in-publish || npm run prepublishOnly",
|
|---|
| 14 | "prepublishOnly": "safe-publish-latest",
|
|---|
| 15 | "lint": "eslint --ext=.js,.mjs .",
|
|---|
| 16 | "postlint": "evalmd README.md",
|
|---|
| 17 | "pretest": "npm run lint",
|
|---|
| 18 | "tests-only": "nyc tape 'test/**/*.js'",
|
|---|
| 19 | "test": "npm run tests-only",
|
|---|
| 20 | "posttest": "npx npm@'>=10.2' audit --production",
|
|---|
| 21 | "version": "auto-changelog && git add CHANGELOG.md",
|
|---|
| 22 | "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
|---|
| 23 | },
|
|---|
| 24 | "repository": {
|
|---|
| 25 | "type": "git",
|
|---|
| 26 | "url": "git+https://github.com/ljharb/call-bind.git"
|
|---|
| 27 | },
|
|---|
| 28 | "keywords": [
|
|---|
| 29 | "javascript",
|
|---|
| 30 | "ecmascript",
|
|---|
| 31 | "es",
|
|---|
| 32 | "js",
|
|---|
| 33 | "callbind",
|
|---|
| 34 | "callbound",
|
|---|
| 35 | "call",
|
|---|
| 36 | "bind",
|
|---|
| 37 | "bound",
|
|---|
| 38 | "call-bind",
|
|---|
| 39 | "call-bound",
|
|---|
| 40 | "function",
|
|---|
| 41 | "es-abstract"
|
|---|
| 42 | ],
|
|---|
| 43 | "author": "Jordan Harband <ljharb@gmail.com>",
|
|---|
| 44 | "funding": {
|
|---|
| 45 | "url": "https://github.com/sponsors/ljharb"
|
|---|
| 46 | },
|
|---|
| 47 | "license": "MIT",
|
|---|
| 48 | "bugs": {
|
|---|
| 49 | "url": "https://github.com/ljharb/call-bind/issues"
|
|---|
| 50 | },
|
|---|
| 51 | "homepage": "https://github.com/ljharb/call-bind#readme",
|
|---|
| 52 | "dependencies": {
|
|---|
| 53 | "call-bind-apply-helpers": "^1.0.2",
|
|---|
| 54 | "es-define-property": "^1.0.1",
|
|---|
| 55 | "get-intrinsic": "^1.3.0",
|
|---|
| 56 | "set-function-length": "^1.2.2"
|
|---|
| 57 | },
|
|---|
| 58 | "devDependencies": {
|
|---|
| 59 | "@ljharb/eslint-config": "^22.2.2",
|
|---|
| 60 | "auto-changelog": "^2.5.0",
|
|---|
| 61 | "encoding": "^0.1.13",
|
|---|
| 62 | "es-value-fixtures": "^1.7.1",
|
|---|
| 63 | "eslint": "^8.57.1",
|
|---|
| 64 | "evalmd": "^0.0.19",
|
|---|
| 65 | "for-each": "^0.3.5",
|
|---|
| 66 | "has-strict-mode": "^1.1.0",
|
|---|
| 67 | "in-publish": "^2.0.1",
|
|---|
| 68 | "npmignore": "^0.3.5",
|
|---|
| 69 | "nyc": "^10.3.2",
|
|---|
| 70 | "object-inspect": "^1.13.4",
|
|---|
| 71 | "safe-publish-latest": "^2.0.0",
|
|---|
| 72 | "tape": "^5.9.0"
|
|---|
| 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": true
|
|---|
| 84 | },
|
|---|
| 85 | "publishConfig": {
|
|---|
| 86 | "ignore": [
|
|---|
| 87 | ".github/workflows"
|
|---|
| 88 | ]
|
|---|
| 89 | },
|
|---|
| 90 | "engines": {
|
|---|
| 91 | "node": ">= 0.4"
|
|---|
| 92 | }
|
|---|
| 93 | }
|
|---|