1 | {
|
2 | "name": "simple-git",
|
3 | "description": "Simple GIT interface for node.js",
|
4 | "version": "3.27.0",
|
5 | "author": "Steve King <steve@mydev.co>",
|
6 | "contributors": [
|
7 | {
|
8 | "name": "Steve King",
|
9 | "email": "steve@mydev.co"
|
10 | }
|
11 | ],
|
12 | "funding": {
|
13 | "type": "github",
|
14 | "url": "https://github.com/steveukx/git-js?sponsor=1"
|
15 | },
|
16 | "dependencies": {
|
17 | "@kwsites/file-exists": "^1.1.1",
|
18 | "@kwsites/promise-deferred": "^1.1.1",
|
19 | "debug": "^4.3.5"
|
20 | },
|
21 | "devDependencies": {
|
22 | "@kwsites/promise-result": "^1.1.0",
|
23 | "@simple-git/babel-config": "^1.0.0",
|
24 | "@types/debug": "^4.1.12",
|
25 | "@types/jest": "^29.2.2",
|
26 | "@types/node": "^22.5.1",
|
27 | "esbuild": "^0.14.10",
|
28 | "esbuild-node-externals": "^1.4.1",
|
29 | "jest": "^29.7.0",
|
30 | "ts-node": "^10.9.2",
|
31 | "typescript": "^5.5.4"
|
32 | },
|
33 | "keywords": [
|
34 | "git",
|
35 | "source control",
|
36 | "vcs"
|
37 | ],
|
38 | "license": "MIT",
|
39 | "repository": {
|
40 | "type": "git",
|
41 | "url": "https://github.com/steveukx/git-js.git",
|
42 | "directory": "simple-git"
|
43 | },
|
44 | "main": "dist/cjs/index.js",
|
45 | "module": "dist/esm/index.js",
|
46 | "exports": {
|
47 | ".": {
|
48 | "types": "./dist/typings/index.d.ts",
|
49 | "import": "./dist/esm/index.js",
|
50 | "require": "./dist/cjs/index.js"
|
51 | },
|
52 | "./promise": {
|
53 | "require": "./promise.js"
|
54 | }
|
55 | },
|
56 | "types": "./dist/typings/index.d.ts",
|
57 | "files": [
|
58 | "promise.*",
|
59 | "dist"
|
60 | ]
|
61 | } |
\ | No newline at end of file |