package.json
 1  {
 2  	"name": "is-core-module",
 3  	"version": "2.8.0",
 4  	"description": "Is this specifier a node.js core module?",
 5  	"main": "index.js",
 6  	"sideEffects": false,
 7  	"exports": {
 8  		".": [
 9  			{
10  				"default": "./index.js"
11  			},
12  			"./index.js"
13  		],
14  		"./package.json": "./package.json"
15  	},
16  	"scripts": {
17  		"prepublish": "not-in-publish || npm run prepublishOnly",
18  		"prepublishOnly": "safe-publish-latest",
19  		"lint": "eslint .",
20  		"pretest": "npm run lint",
21  		"tests-only": "tape 'test/**/*.js'",
22  		"test": "nyc npm run tests-only",
23  		"posttest": "aud --production",
24  		"version": "auto-changelog && git add CHANGELOG.md",
25  		"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
26  	},
27  	"repository": {
28  		"type": "git",
29  		"url": "git+https://github.com/inspect-js/is-core-module.git"
30  	},
31  	"keywords": [
32  		"core",
33  		"modules",
34  		"module",
35  		"npm",
36  		"node",
37  		"dependencies"
38  	],
39  	"author": "Jordan Harband <ljharb@gmail.com>",
40  	"funding": {
41  		"url": "https://github.com/sponsors/ljharb"
42  	},
43  	"license": "MIT",
44  	"bugs": {
45  		"url": "https://github.com/inspect-js/is-core-module/issues"
46  	},
47  	"homepage": "https://github.com/inspect-js/is-core-module",
48  	"dependencies": {
49  		"has": "^1.0.3"
50  	},
51  	"devDependencies": {
52  		"@ljharb/eslint-config": "^18.0.0",
53  		"aud": "^1.1.5",
54  		"auto-changelog": "^2.3.0",
55  		"eslint": "^7.32.0",
56  		"nyc": "^10.3.2",
57  		"safe-publish-latest": "^1.1.4",
58  		"semver": "^6.3.0",
59  		"tape": "^5.3.1"
60  	},
61  	"auto-changelog": {
62  		"output": "CHANGELOG.md",
63  		"template": "keepachangelog",
64  		"unreleased": false,
65  		"commitLimit": false,
66  		"backfillLimit": false,
67  		"hideCredit": true
68  	}
69  }