package.json
 1  {
 2    "name": "which-module",
 3    "version": "2.0.0",
 4    "description": "Find the module object for something that was require()d",
 5    "main": "index.js",
 6    "scripts": {
 7      "pretest": "standard",
 8      "test": "nyc ava",
 9      "coverage": "nyc report --reporter=text-lcov | coveralls",
10      "release": "standard-version"
11    },
12    "files": [
13      "index.js"
14    ],
15    "repository": {
16      "type": "git",
17      "url": "git+https://github.com/nexdrew/which-module.git"
18    },
19    "keywords": [
20      "which",
21      "module",
22      "exports",
23      "filename",
24      "require",
25      "reverse",
26      "lookup"
27    ],
28    "author": "nexdrew",
29    "license": "ISC",
30    "bugs": {
31      "url": "https://github.com/nexdrew/which-module/issues"
32    },
33    "homepage": "https://github.com/nexdrew/which-module#readme",
34    "devDependencies": {
35      "ava": "^0.19.1",
36      "coveralls": "^2.13.1",
37      "nyc": "^10.3.0",
38      "standard": "^10.0.2",
39      "standard-version": "^4.0.0"
40    }
41  }