strong-tie/inbound-calls
0
1{2 "name": "call-bind-apply-helpers",3 "version": "1.0.2",4 "description": "Helper functions around Function call/apply/bind, for use in `call-bind`",5 "main": "index.js",6 "exports": {7 ".": "./index.js",8 "./actualApply": "./actualApply.js",9 "./applyBind": "./applyBind.js",10 "./functionApply": "./functionApply.js",11 "./functionCall": "./functionCall.js",12 "./reflectApply": "./reflectApply.js",13 "./package.json": "./package.json"14 },15 "scripts": {16 "prepack": "npmignore --auto --commentLines=auto",17 "prepublish": "not-in-publish || npm run prepublishOnly",18 "prepublishOnly": "safe-publish-latest",19 "prelint": "evalmd README.md",20 "lint": "eslint --ext=.js,.mjs .",21 "postlint": "tsc -p . && attw -P",22 "pretest": "npm run lint",23 "tests-only": "nyc tape 'test/**/*.js'",24 "test": "npm run tests-only",25 "posttest": "npx npm@'>=10.2' audit --production",26 "version": "auto-changelog && git add CHANGELOG.md",27 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""28 },29 "repository": {30 "type": "git",31 "url": "git+https://github.com/ljharb/call-bind-apply-helpers.git"32 },33 "author": "Jordan Harband <ljharb@gmail.com>",34 "license": "MIT",35 "bugs": {36 "url": "https://github.com/ljharb/call-bind-apply-helpers/issues"37 },38 "homepage": "https://github.com/ljharb/call-bind-apply-helpers#readme",39 "dependencies": {40 "es-errors": "^1.3.0",41 "function-bind": "^1.1.2"42 },43 "devDependencies": {44 "@arethetypeswrong/cli": "^0.17.3",45 "@ljharb/eslint-config": "^21.1.1",46 "@ljharb/tsconfig": "^0.2.3",47 "@types/for-each": "^0.3.3",48 "@types/function-bind": "^1.1.10",49 "@types/object-inspect": "^1.13.0",50 "@types/tape": "^5.8.1",51 "auto-changelog": "^2.5.0",52 "encoding": "^0.1.13",53 "es-value-fixtures": "^1.7.1",54 "eslint": "=8.8.0",55 "evalmd": "^0.0.19",56 "for-each": "^0.3.5",57 "has-strict-mode": "^1.1.0",58 "in-publish": "^2.0.1",59 "npmignore": "^0.3.1",60 "nyc": "^10.3.2",61 "object-inspect": "^1.13.4",62 "safe-publish-latest": "^2.0.0",63 "tape": "^5.9.0",64 "typescript": "next"65 },66 "testling": {67 "files": "test/index.js"68 },69 "auto-changelog": {70 "output": "CHANGELOG.md",71 "template": "keepachangelog",72 "unreleased": false,73 "commitLimit": false,74 "backfillLimit": false,75 "hideCredit": true76 },77 "publishConfig": {78 "ignore": [79 ".github/workflows"80 ]81 },82 "engines": {83 "node": ">= 0.4"84 }85}86 