1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "which-module",
- "version": "2.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.19.1",
- "coveralls": "^2.13.1",
- "nyc": "^10.3.0",
- "standard": "^10.0.2",
- "standard-version": "^4.0.0"
- }
- }
|