package.json
 1  {
 2    "name": "fs.realpath",
 3    "version": "1.0.0",
 4    "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails",
 5    "main": "index.js",
 6    "dependencies": {},
 7    "devDependencies": {},
 8    "scripts": {
 9      "test": "tap test/*.js --cov"
10    },
11    "repository": {
12      "type": "git",
13      "url": "git+https://github.com/isaacs/fs.realpath.git"
14    },
15    "keywords": [
16      "realpath",
17      "fs",
18      "polyfill"
19    ],
20    "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
21    "license": "ISC",
22    "files": [
23      "old.js",
24      "index.js"
25    ]
26  }