-
-
Notifications
You must be signed in to change notification settings - Fork 320
/
Copy pathpackage.json
81 lines (81 loc) · 1.97 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "simple-git",
"description": "Simple GIT interface for node.js",
"private": true,
"version": "2.48.0",
"author": "Steve King <steve@mydev.co>",
"contributors": [
{
"name": "Steve King",
"email": "steve@mydev.co"
}
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/steveukx/"
},
"dependencies": {
"@kwsites/file-exists": "^1.1.1",
"@kwsites/promise-deferred": "^1.1.1",
"debug": "^4.3.3"
},
"devDependencies": {
"@simple-git/babel-config": "^1.0.0",
"@kwsites/promise-result": "^1.1.0",
"@types/debug": "^4.1.5",
"@types/jest": "^27.0.3",
"@types/node": "^14.14.10",
"esbuild": "^0.14.10",
"esbuild-node-externals": "^1.4.1",
"jest": "^27.4.5",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"keywords": [
"git",
"source control",
"vcs"
],
"license": "MIT",
"repository": "git://github.com/steveukx/git-js.git",
"main": "src/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"types": "./typings/index.d.ts",
"files": [
"promise.js",
"promise.d.ts",
"src/**/*.d.ts",
"typings",
"dist"
],
"scripts": {
"build": "yarn build:compile && yarn build:defs && yarn build:promise && yarn build:docs && yarn build:pkg",
"build:compile": "node scripts/build.js",
"build:defs": "tsc -p tsconfig.release.json --outDir dist && cp -r typings dist",
"build:pkg": "node scripts/package-json.js",
"build:promise": "cp promise.* dist",
"build:docs": "cp ../*.md ../LICENSE dist",
"preversion": "yarn test && yarn build",
"test": "jest --coverage"
},
"publishConfig": {
"tag": "canary"
},
"publish": {
"private": false,
"main": "cjs/index.js",
"module": "esm/index.js",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
}
}
}
}