1{ 2 "name": "function-bind", 3 "version": "1.1.2", 4 "description": "Implementation of Function.prototype.bind", 5 "keywords": [ 6 "function", 7 "bind", 8 "shim", 9 "es5" 10 ], 11 "author": "Raynos <raynos2@gmail.com>", 12 "repository": { 13 "type": "git", 14 "url": "https://github.com/Raynos/function-bind.git" 15 }, 16 "funding": { 17 "url": "https://github.com/sponsors/ljharb" 18 }, 19 "main": "index", 20 "homepage": "https://github.com/Raynos/function-bind", 21 "contributors": [ 22 { 23 "name": "Raynos" 24 }, 25 { 26 "name": "Jordan Harband", 27 "url": "https://github.com/ljharb" 28 } 29 ], 30 "bugs": { 31 "url": "https://github.com/Raynos/function-bind/issues", 32 "email": "raynos2@gmail.com" 33 }, 34 "devDependencies": { 35 "@ljharb/eslint-config": "^21.1.0", 36 "aud": "^2.0.3", 37 "auto-changelog": "^2.4.0", 38 "eslint": "=8.8.0", 39 "in-publish": "^2.0.1", 40 "npmignore": "^0.3.0", 41 "nyc": "^10.3.2", 42 "safe-publish-latest": "^2.0.0", 43 "tape": "^5.7.1" 44 }, 45 "license": "MIT", 46 "scripts": { 47 "prepublishOnly": "safe-publish-latest", 48 "prepublish": "not-in-publish || npm run prepublishOnly", 49 "prepack": "npmignore --auto --commentLines=autogenerated", 50 "pretest": "npm run lint", 51 "test": "npm run tests-only", 52 "posttest": "aud --production", 53 "tests-only": "nyc tape 'test/**/*.js'", 54 "lint": "eslint --ext=js,mjs .", 55 "version": "auto-changelog && git add CHANGELOG.md", 56 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 57 }, 58 "testling": { 59 "files": "test/index.js", 60 "browsers": [ 61 "ie/8..latest", 62 "firefox/16..latest", 63 "firefox/nightly", 64 "chrome/22..latest", 65 "chrome/canary", 66 "opera/12..latest", 67 "opera/next", 68 "safari/5.1..latest", 69 "ipad/6.0..latest", 70 "iphone/6.0..latest", 71 "android-browser/4.2..latest" 72 ] 73 }, 74 "auto-changelog": { 75 "output": "CHANGELOG.md", 76 "template": "keepachangelog", 77 "unreleased": false, 78 "commitLimit": false, 79 "backfillLimit": false, 80 "hideCredit": true 81 }, 82 "publishConfig": { 83 "ignore": [ 84 ".github/workflows" 85 ] 86 } 87} 88