{ "name": "@antora/user-require-helper", "version": "2.0.0", "description": "A helper function to resolve a module name or path in relation to the specified context and require it.", "license": "MPL-2.0", "author": "OpenDevise Inc. (https://opendevise.com)", "contributors": [ "Dan Allen " ], "repository": "gitlab:antora/user-require-helper", "bugs": { "url": "https://gitlab.com/antora/user-require-helper/issues" }, "main": "lib/index.js", "scripts": { "test": "_mocha test", "lint": "eslint \"{lib,npm,test}/**/*.js\"", "format": "prettier-eslint --write \"`pwd`/{lib,npm,test}/**/*.js\"", "cov": "nyc _mocha test" }, "dependencies": { "@antora/expand-path-helper": "~2.0" }, "devDependencies": { "chai": "~4.3", "clear-module": "~4.1", "eslint": "~7.30", "eslint-config-standard": "~16.0", "eslint-plugin-import": "~2.23", "eslint-plugin-node": "~11.1", "eslint-plugin-promise": "~5.1", "mocha": "~8.4", "nyc": "~15.1", "prettier-eslint-cli": "~5.0" }, "engines": { "node": ">=10.17.0" }, "files": [ "lib/" ], "keywords": [ "require", "resolve", "user", "module", "path", "absolute", "relative", "cwd", "pwd", "home" ], "publishConfig": { "access": "public" }, "nyc": { "cache": true, "cacheDir": "node_modules/.cache/nyc", "include": [ "lib/**/*.js" ], "reporter": [ "lcov" ] } }