UNPKG

805 BJSONView Raw
1{
2 "name": "path-type",
3 "version": "5.0.0",
4 "description": "Check if a path is a file, directory, or symlink",
5 "license": "MIT",
6 "repository": "sindresorhus/path-type",
7 "funding": "https://github.com/sponsors/sindresorhus",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "type": "module",
14 "exports": "./index.js",
15 "engines": {
16 "node": ">=12"
17 },
18 "scripts": {
19 "test": "xo && nyc ava && tsd"
20 },
21 "files": [
22 "index.js",
23 "index.d.ts"
24 ],
25 "keywords": [
26 "path",
27 "fs",
28 "type",
29 "is",
30 "check",
31 "directory",
32 "file",
33 "filepath",
34 "symlink",
35 "symbolic",
36 "link",
37 "stat",
38 "stats",
39 "filesystem"
40 ],
41 "devDependencies": {
42 "ava": "^3.15.0",
43 "nyc": "^15.1.0",
44 "tsd": "^0.14.0",
45 "xo": "^0.37.1"
46 }
47}