UNPKG

781 BJSONView Raw
1{
2 "name": "is-path-in-cwd",
3 "version": "4.0.0",
4 "description": "Check if a path is in the current working directory",
5 "license": "MIT",
6 "repository": "sindresorhus/is-path-in-cwd",
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 && ava && tsd"
20 },
21 "files": [
22 "index.js",
23 "index.d.ts"
24 ],
25 "keywords": [
26 "path",
27 "cwd",
28 "pwd",
29 "check",
30 "filepath",
31 "file",
32 "folder",
33 "in",
34 "inside"
35 ],
36 "dependencies": {
37 "is-path-inside": "^4.0.0"
38 },
39 "devDependencies": {
40 "ava": "^3.15.0",
41 "tsd": "^0.14.0",
42 "xo": "^0.39.1"
43 }
44}