package.json
1 { 2 "name": "get-intrinsic", 3 "version": "1.3.0", 4 "description": "Get and robustly cache all JS language-level intrinsics at first require time", 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=autogenerated", 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 "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/get-intrinsic.git" 27 }, 28 "keywords": [ 29 "javascript", 30 "ecmascript", 31 "es", 32 "js", 33 "intrinsic", 34 "getintrinsic", 35 "es-abstract" 36 ], 37 "author": "Jordan Harband <ljharb@gmail.com>", 38 "funding": { 39 "url": "https://github.com/sponsors/ljharb" 40 }, 41 "license": "MIT", 42 "bugs": { 43 "url": "https://github.com/ljharb/get-intrinsic/issues" 44 }, 45 "homepage": "https://github.com/ljharb/get-intrinsic#readme", 46 "dependencies": { 47 "call-bind-apply-helpers": "^1.0.2", 48 "es-define-property": "^1.0.1", 49 "es-errors": "^1.3.0", 50 "es-object-atoms": "^1.1.1", 51 "function-bind": "^1.1.2", 52 "get-proto": "^1.0.1", 53 "gopd": "^1.2.0", 54 "has-symbols": "^1.1.0", 55 "hasown": "^2.0.2", 56 "math-intrinsics": "^1.1.0" 57 }, 58 "devDependencies": { 59 "@ljharb/eslint-config": "^21.1.1", 60 "auto-changelog": "^2.5.0", 61 "call-bound": "^1.0.3", 62 "encoding": "^0.1.13", 63 "es-abstract": "^1.23.9", 64 "es-value-fixtures": "^1.7.1", 65 "eslint": "=8.8.0", 66 "evalmd": "^0.0.19", 67 "for-each": "^0.3.5", 68 "make-async-function": "^1.0.0", 69 "make-async-generator-function": "^1.0.0", 70 "make-generator-function": "^2.0.0", 71 "mock-property": "^1.1.0", 72 "npmignore": "^0.3.1", 73 "nyc": "^10.3.2", 74 "object-inspect": "^1.13.4", 75 "safe-publish-latest": "^2.0.0", 76 "tape": "^5.9.0" 77 }, 78 "auto-changelog": { 79 "output": "CHANGELOG.md", 80 "template": "keepachangelog", 81 "unreleased": false, 82 "commitLimit": false, 83 "backfillLimit": false, 84 "hideCredit": true 85 }, 86 "testling": { 87 "files": "test/GetIntrinsic.js" 88 }, 89 "publishConfig": { 90 "ignore": [ 91 ".github/workflows" 92 ] 93 }, 94 "engines": { 95 "node": ">= 0.4" 96 } 97 }