Files
codeql-action/node_modules/eslint-import-resolver-node/package.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
987 B
JSON
Raw Normal View History

2020-09-14 10:42:37 +01:00
{
"name": "eslint-import-resolver-node",
2023-10-23 18:03:04 +00:00
"version": "0.3.9",
2020-09-14 10:42:37 +01:00
"description": "Node default behavior import resolution plugin for eslint-plugin-import.",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"prepublishOnly": "cp ../../{LICENSE,.npmrc} ./",
"tests-only": "nyc mocha",
"test": "npm run tests-only"
2020-09-14 10:42:37 +01:00
},
"repository": {
"type": "git",
2021-08-09 19:49:16 +00:00
"url": "https://github.com/import-js/eslint-plugin-import"
2020-09-14 10:42:37 +01:00
},
"keywords": [
"eslint",
"eslintplugin",
"esnext",
"modules",
"eslint-plugin-import"
],
"author": "Ben Mosher (me@benmosher.com)",
"license": "MIT",
"bugs": {
2021-08-09 19:49:16 +00:00
"url": "https://github.com/import-js/eslint-plugin-import/issues"
2020-09-14 10:42:37 +01:00
},
2021-08-09 19:49:16 +00:00
"homepage": "https://github.com/import-js/eslint-plugin-import",
2020-09-14 10:42:37 +01:00
"dependencies": {
2021-08-09 19:49:16 +00:00
"debug": "^3.2.7",
2023-10-23 18:03:04 +00:00
"is-core-module": "^2.13.0",
"resolve": "^1.22.4"
2020-09-14 10:42:37 +01:00
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.5.3",
2021-08-09 19:49:16 +00:00
"nyc": "^11.9.0"
2020-09-14 10:42:37 +01:00
}
2022-02-24 17:03:29 +00:00
}