UNPKG

create-git

Version:

Initalize a git repository with some helpful extras

47 lines (46 loc) 1.14 kB
{ "name": "create-git", "version": "1.2.2", "description": "Initalize a git repository with some helpful extras", "author": "Wes Todd <wes@wesleytodd.com>", "bin": { "create-git": "bin/create-git" }, "keywords": [ "git", "scaffold", "npm init", "create-*", "gitignore" ], "license": "ISC", "main": "index.js", "repository": { "type": "git", "url": "git@github.com:wesleytodd/create-git.git" }, "scripts": { "test": "standard && c8 mocha", "test:watch": "mocha --watch", "test:debug": "mocha --insepct --inspect-brk --timeout=0", "test:cover": "c8 mocha", "lint:fix": "standard --fix", "release": "npm t && standard-version && npm publish", "postpublish": "git push origin && git push origin --tags" }, "dependencies": { "fs-extra": "^11.1.1", "got": "^11.8.6", "loggerr": "^3.3.0", "opta": "^1.0.2", "parse-gitignore": "^1.0.1", "safe-parse-list": "^0.1.1" }, "devDependencies": { "c8": "^8.0.1", "fs-test-fixtures": "^0.1.4", "mocha": "^10.2.0", "standard": "^17.1.0", "standard-version": "^9.5.0" } }