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.
41 lines
917 B
41 lines
917 B
{ |
|
"name": "which-module", |
|
"version": "1.0.0", |
|
"description": "Find the module object for something that was require()d", |
|
"main": "index.js", |
|
"scripts": { |
|
"pretest": "standard", |
|
"test": "nyc ava", |
|
"coverage": "nyc report --reporter=text-lcov | coveralls", |
|
"release": "standard-version" |
|
}, |
|
"files": [ |
|
"index.js" |
|
], |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://github.com/nexdrew/which-module.git" |
|
}, |
|
"keywords": [ |
|
"which", |
|
"module", |
|
"exports", |
|
"filename", |
|
"require", |
|
"reverse", |
|
"lookup" |
|
], |
|
"author": "nexdrew", |
|
"license": "ISC", |
|
"bugs": { |
|
"url": "https://github.com/nexdrew/which-module/issues" |
|
}, |
|
"homepage": "https://github.com/nexdrew/which-module#readme", |
|
"devDependencies": { |
|
"ava": "^0.15.2", |
|
"coveralls": "^2.11.9", |
|
"nyc": "^6.4.4", |
|
"standard": "^7.1.2", |
|
"standard-version": "^2.3.0" |
|
} |
|
}
|
|
|