UNPKG

simple-git

Version:

Simple GIT interface for node.js

61 lines (60 loc) 1.61 kB
{ "name": "simple-git", "description": "Simple GIT interface for node.js", "version": "2.20.1", "author": "Steve King <steve@mydev.co>", "contributors": [ { "name": "Steve King", "email": "steve@mydev.co" } ], "dependencies": { "@kwsites/file-exists": "^1.1.1", "@kwsites/promise-deferred": "^1.1.1", "debug": "^4.1.1" }, "devDependencies": { "@babel/core": "^7.10.1", "@babel/preset-env": "^7.10.1", "@babel/preset-typescript": "^7.10.1", "@kwsites/jestify-node-unit": "^1.0.1", "@kwsites/promise-result": "^1.1.0", "@types/debug": "^4.1.5", "@types/jest": "^25.2.3", "@types/node": "^13.11.1", "babel-jest": "^26.0.1", "babel-plugin-module-resolver": "^4.0.0", "jest": "^25.3.0", "sinon": "^7.3.2", "ts-node": "^8.10.2", "typescript": "^3.8.3" }, "keywords": [ "git", "source control", "vcs" ], "license": "MIT", "repository": "git://github.com/steveukx/git-js.git", "main": "./src/index.js", "types": "./typings/index.d.ts", "files": [ "promise.js", "promise.d.ts", "src/**/*.d.ts", "src/**/*.js", "src/**/*.js.map", "typings/" ], "scripts": { "clean": "git clean -fxd -e .idea -e node_modules", "tsc": "tsc", "build": "tsc --build", "build:clean": "yarn clean && yarn build", "pretest": "yarn build", "test": "tsc -p test/consumer/tsconfig-standard.json && tsc -p test/consumer/tsconfig-promise.json && jest --coverage", "preversion": "yarn test", "postversion": "npm publish && git push && git push --tags" } }