package.json
 1  {
 2  	"name": "path-exists",
 3  	"version": "4.0.0",
 4  	"description": "Check if a path exists",
 5  	"license": "MIT",
 6  	"repository": "sindresorhus/path-exists",
 7  	"author": {
 8  		"name": "Sindre Sorhus",
 9  		"email": "sindresorhus@gmail.com",
10  		"url": "sindresorhus.com"
11  	},
12  	"engines": {
13  		"node": ">=8"
14  	},
15  	"scripts": {
16  		"test": "xo && ava && tsd"
17  	},
18  	"files": [
19  		"index.js",
20  		"index.d.ts"
21  	],
22  	"keywords": [
23  		"path",
24  		"exists",
25  		"exist",
26  		"file",
27  		"filepath",
28  		"fs",
29  		"filesystem",
30  		"file-system",
31  		"access",
32  		"stat"
33  	],
34  	"devDependencies": {
35  		"ava": "^1.4.1",
36  		"tsd": "^0.7.2",
37  		"xo": "^0.24.0"
38  	}
39  }