You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1010 B
43 lines
1010 B
{
|
|
"name": "requireable",
|
|
"version": "0.4.0",
|
|
"description": "Enables a module to require itself by name in tests",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"test": "xo && nyc ava",
|
|
"coverage": "nyc report --reporter=text-lcov | coveralls"
|
|
},
|
|
"xo": {
|
|
"extends": "xo-lukechilds"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/lukechilds/requireable.git"
|
|
},
|
|
"keywords": [
|
|
"find",
|
|
"require",
|
|
"requireable",
|
|
"self",
|
|
"root",
|
|
"current",
|
|
"module"
|
|
],
|
|
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/lukechilds/requireable/issues"
|
|
},
|
|
"homepage": "https://github.com/lukechilds/requireable",
|
|
"dependencies": {
|
|
"mock-require": "^2.0.2",
|
|
"pkg-dir": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^0.19.1",
|
|
"coveralls": "^2.13.1",
|
|
"eslint-config-xo-lukechilds": "^1.0.0",
|
|
"nyc": "^10.3.2",
|
|
"xo": "^0.19.0"
|
|
}
|
|
}
|
|
|