{ "name": "cacache", "version": "5.0.3", "cache-version": { "content": "1", "index": "1" }, "description": "General content-addressable cache system that maintains a filesystem registry of file data.", "main": "index.js", "files": [ "*.js", "lib" ], "scripts": { "preversion": "npm t", "postversion": "npm publish && git push --follow-tags", "pretest": "standard lib test *.js", "test": "nyc -- tap -J test/*.js", "test-docker": "docker run -it --rm --name pacotest -v \"$PWD\":/tmp -w /tmp node:latest npm test", "update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'", "update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'" }, "repository": "https://github.com/zkat/cacache", "keywords": [ "cache", "content-addressable cache", "file store" ], "author": { "name": "Kat Marchán", "email": "kzm@sykosomatic.org", "twitter": "maybekatz" }, "contributors": [ { "name": "Charlotte Spencer", "email": "charlottelaspencer@gmail.com", "twitter": "charlotteis" }, { "name": "Rebecca Turner", "email": "me@re-becca.org" } ], "license": "CC0-1.0", "dependencies": { "@npmcorp/move": "^1.0.0", "bluebird": "^3.4.7", "checksum-stream": "^1.0.2", "chownr": "^1.0.1", "dezalgo": "^1.0.3", "graceful-fs": "^4.1.10", "lockfile": "^1.0.2", "mississippi": "^1.2.0", "mkdirp": "^0.5.1", "once": "^1.4.0", "promise-inflight": "^1.0.1", "rimraf": "^2.6.1", "slide": "^1.1.6", "split": "^1.0.0", "unique-filename": "^1.1.0" }, "devDependencies": { "glob": "^7.1.1", "nyc": "^10.0.0", "require-inject": "^1.4.0", "standard": "^9.0.0", "tacks": "^1.2.2", "tap": "^10.3.0", "weallbehave": "^1.0.0", "weallcontribute": "^1.0.8" }, "config": { "nyc": { "exclude": [ "node_modules/**", "test/**" ] } } }