123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "name": "find-cache-dir",
- "version": "4.0.0",
- "description": "Finds the common standard cache directory",
- "license": "MIT",
- "repository": "sindresorhus/find-cache-dir",
- "funding": "https://github.com/sponsors/sindresorhus",
- "author": {
- "name": "Sindre Sorhus",
- "email": "sindresorhus@gmail.com",
- "url": "https://sindresorhus.com"
- },
- "type": "module",
- "exports": "./index.js",
- "engines": {
- "node": ">=14.16"
- },
- "scripts": {
- "test": "xo && ava"
- },
- "files": [
- "index.js"
- ],
- "keywords": [
- "cache",
- "directory",
- "dir",
- "caching",
- "find",
- "search"
- ],
- "dependencies": {
- "common-path-prefix": "^3.0.0",
- "pkg-dir": "^7.0.0"
- },
- "devDependencies": {
- "ava": "^5.0.1",
- "del": "^7.0.0",
- "tempy": "^3.0.0",
- "xo": "^0.52.4"
- },
- "ava": {
- "workerThreads": false
- }
- }
|