[d565449] | 1 | {
|
---|
| 2 | "name": "get-intrinsic",
|
---|
| 3 | "version": "1.2.4",
|
---|
| 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": "aud --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 | "devDependencies": {
|
---|
| 47 | "@ljharb/eslint-config": "^21.1.0",
|
---|
| 48 | "aud": "^2.0.4",
|
---|
| 49 | "auto-changelog": "^2.4.0",
|
---|
| 50 | "call-bind": "^1.0.5",
|
---|
| 51 | "es-abstract": "^1.22.3",
|
---|
| 52 | "es-value-fixtures": "^1.4.2",
|
---|
| 53 | "eslint": "=8.8.0",
|
---|
| 54 | "evalmd": "^0.0.19",
|
---|
| 55 | "for-each": "^0.3.3",
|
---|
| 56 | "gopd": "^1.0.1",
|
---|
| 57 | "make-async-function": "^1.0.0",
|
---|
| 58 | "make-async-generator-function": "^1.0.0",
|
---|
| 59 | "make-generator-function": "^2.0.0",
|
---|
| 60 | "mock-property": "^1.0.3",
|
---|
| 61 | "npmignore": "^0.3.1",
|
---|
| 62 | "nyc": "^10.3.2",
|
---|
| 63 | "object-inspect": "^1.13.1",
|
---|
| 64 | "safe-publish-latest": "^2.0.0",
|
---|
| 65 | "tape": "^5.7.4"
|
---|
| 66 | },
|
---|
| 67 | "auto-changelog": {
|
---|
| 68 | "output": "CHANGELOG.md",
|
---|
| 69 | "template": "keepachangelog",
|
---|
| 70 | "unreleased": false,
|
---|
| 71 | "commitLimit": false,
|
---|
| 72 | "backfillLimit": false,
|
---|
| 73 | "hideCredit": true
|
---|
| 74 | },
|
---|
| 75 | "dependencies": {
|
---|
| 76 | "es-errors": "^1.3.0",
|
---|
| 77 | "function-bind": "^1.1.2",
|
---|
| 78 | "has-proto": "^1.0.1",
|
---|
| 79 | "has-symbols": "^1.0.3",
|
---|
| 80 | "hasown": "^2.0.0"
|
---|
| 81 | },
|
---|
| 82 | "testling": {
|
---|
| 83 | "files": "test/GetIntrinsic.js"
|
---|
| 84 | },
|
---|
| 85 | "publishConfig": {
|
---|
| 86 | "ignore": [
|
---|
| 87 | ".github/workflows"
|
---|
| 88 | ]
|
---|
| 89 | },
|
---|
| 90 | "engines": {
|
---|
| 91 | "node": ">= 0.4"
|
---|
| 92 | }
|
---|
| 93 | }
|
---|