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