1{
2	"name": "get-intrinsic",
3	"version": "1.2.1",
4	"description": "Get and robustly cache all JS language-level intrinsics at first require time",
5	"main": "index.js",
6	"exports": {
7		".": [
8			{
9				"default": "./index.js"
10			},
11			"./index.js"
12		],
13		"./package.json": "./package.json"
14	},
15	"scripts": {
16		"prepack": "npmignore --auto --commentLines=autogenerated",
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		"pretest": "npm run lint",
22		"tests-only": "nyc tape 'test/**/*.js'",
23		"test": "npm run tests-only",
24		"posttest": "aud --production",
25		"version": "auto-changelog && git add CHANGELOG.md",
26		"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
27	},
28	"repository": {
29		"type": "git",
30		"url": "git+https://github.com/ljharb/get-intrinsic.git"
31	},
32	"keywords": [
33		"javascript",
34		"ecmascript",
35		"es",
36		"js",
37		"intrinsic",
38		"getintrinsic",
39		"es-abstract"
40	],
41	"author": "Jordan Harband <ljharb@gmail.com>",
42	"funding": {
43		"url": "https://github.com/sponsors/ljharb"
44	},
45	"license": "MIT",
46	"bugs": {
47		"url": "https://github.com/ljharb/get-intrinsic/issues"
48	},
49	"homepage": "https://github.com/ljharb/get-intrinsic#readme",
50	"devDependencies": {
51		"@ljharb/eslint-config": "^21.0.1",
52		"aud": "^2.0.2",
53		"auto-changelog": "^2.4.0",
54		"call-bind": "^1.0.2",
55		"es-abstract": "^1.21.2",
56		"es-value-fixtures": "^1.4.2",
57		"eslint": "=8.8.0",
58		"evalmd": "^0.0.19",
59		"for-each": "^0.3.3",
60		"gopd": "^1.0.1",
61		"make-async-function": "^1.0.0",
62		"make-async-generator-function": "^1.0.0",
63		"make-generator-function": "^2.0.0",
64		"mock-property": "^1.0.0",
65		"npmignore": "^0.3.0",
66		"nyc": "^10.3.2",
67		"object-inspect": "^1.12.3",
68		"safe-publish-latest": "^2.0.0",
69		"tape": "^5.6.3"
70	},
71	"auto-changelog": {
72		"output": "CHANGELOG.md",
73		"template": "keepachangelog",
74		"unreleased": false,
75		"commitLimit": false,
76		"backfillLimit": false,
77		"hideCredit": true
78	},
79	"dependencies": {
80		"function-bind": "^1.1.1",
81		"has": "^1.0.3",
82		"has-proto": "^1.0.1",
83		"has-symbols": "^1.0.3"
84	},
85	"testling": {
86		"files": "test/GetIntrinsic.js"
87	},
88	"publishConfig": {
89		"ignore": [
90			".github/workflows"
91		]
92	}
93}
94