UNPKG

git-cat-file

Version:

Pure JavaScript `git cat-file -p` for node.js

53 lines (52 loc) 1.13 kB
{ "name": "git-cat-file", "description": "Pure JavaScript `git cat-file -p` for node.js", "version": "0.3.0", "author": "@kawanet", "bin": { "git-cat-file-js": "bin/git-cat-file-js.js", "git-ls-tree-js": "bin/git-ls-tree-js.js", "git-rev-parse-js": "bin/git-rev-parse-js.js" }, "dependencies": { "async-cache-queue": "^0.2.6", "process.argv": "^0.6.1" }, "devDependencies": { "@types/mocha": "^10.0.1", "@types/node": "^20.4.5", "mocha": "^10.2.0", "typescript": "^5.1.6" }, "engines": { "node": ">= 14" }, "files": [ "LICENSE", "README.md", "bin/*.js", "lib/*.js", "types/*.d.ts" ], "keywords": [ "cat-file", "git", "gitlab", "ls-tree", "repository", "rev-parse" ], "license": "MIT", "main": "lib/index.js", "repository": { "type": "git", "url": "git+https://github.com/kawanet/git-cat-file.git" }, "scripts": { "build": "./node_modules/.bin/tsc -p .", "fixpack": "fixpack", "prepack": "npm run build && npm test", "test": "make test" }, "types": "types/git-cat-file.d.ts" }