isomorphic-git 1.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +7 -0
- package/README.md +384 -0
- package/browser-tests.json +8 -0
- package/cli.cjs +41 -0
- package/http/node/index.cjs +230 -0
- package/http/node/index.d.ts +77 -0
- package/http/node/index.js +224 -0
- package/http/node/package.json +6 -0
- package/http/web/index.cjs +170 -0
- package/http/web/index.d.ts +77 -0
- package/http/web/index.js +166 -0
- package/http/web/index.umd.js +176 -0
- package/http/web/package.json +7 -0
- package/index.cjs +14249 -0
- package/index.d.ts +4262 -0
- package/index.js +14178 -0
- package/index.umd.min.d.ts +4262 -0
- package/index.umd.min.js +9 -0
- package/index.umd.min.js.map +1 -0
- package/package.json +155 -0
- package/size_report.html +64 -0
package/package.json
ADDED
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "isomorphic-git",
|
|
3
|
+
"version": "1.10.1",
|
|
4
|
+
"description": "A pure JavaScript reimplementation of git for node and browsers",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"typings": "./index.d.ts",
|
|
7
|
+
"main": "./index.cjs",
|
|
8
|
+
"module": "./index.js",
|
|
9
|
+
"unpkg": "./index.umd.min.js",
|
|
10
|
+
"bin": {
|
|
11
|
+
"isogit": "./cli.cjs"
|
|
12
|
+
},
|
|
13
|
+
"sideEffects": false,
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=10"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"start": "nps",
|
|
19
|
+
"format": "nps format",
|
|
20
|
+
"build": "nps build",
|
|
21
|
+
"test": "nps test",
|
|
22
|
+
"publish-website": "nps website",
|
|
23
|
+
"prepublishOnly": "nps prepublish",
|
|
24
|
+
"semantic-release": "semantic-release",
|
|
25
|
+
"add-contributor": "nps contributors.add"
|
|
26
|
+
},
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/isomorphic-git/isomorphic-git.git"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"git",
|
|
33
|
+
"isomorphic"
|
|
34
|
+
],
|
|
35
|
+
"author": "William Hilton <wmhilton@gmail.com>",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/isomorphic-git/isomorphic-git/issues"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://isomorphic-git.org/",
|
|
41
|
+
"files": [
|
|
42
|
+
"cli.cjs",
|
|
43
|
+
"browser-tests.json",
|
|
44
|
+
"http/*",
|
|
45
|
+
"index.cjs",
|
|
46
|
+
"index.d.ts",
|
|
47
|
+
"index.js",
|
|
48
|
+
"index.umd.min.js",
|
|
49
|
+
"index.umd.min.d.ts",
|
|
50
|
+
"index.umd.min.js.map",
|
|
51
|
+
"size_report.html"
|
|
52
|
+
],
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"async-lock": "^1.1.0",
|
|
55
|
+
"clean-git-ref": "^2.0.1",
|
|
56
|
+
"crc-32": "^1.2.0",
|
|
57
|
+
"diff3": "0.0.3",
|
|
58
|
+
"ignore": "^5.1.4",
|
|
59
|
+
"minimisted": "^2.0.0",
|
|
60
|
+
"pako": "^1.0.10",
|
|
61
|
+
"pify": "^4.0.1",
|
|
62
|
+
"readable-stream": "^3.4.0",
|
|
63
|
+
"sha.js": "^2.4.9",
|
|
64
|
+
"simple-get": "^3.0.2"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@babel/core": "7.6.0",
|
|
68
|
+
"@babel/plugin-transform-async-to-generator": "7.5.0",
|
|
69
|
+
"@babel/preset-env": "7.5.5",
|
|
70
|
+
"@babel/runtime": "7.5.5",
|
|
71
|
+
"@isomorphic-git/cors-proxy": "2.7.0",
|
|
72
|
+
"@isomorphic-git/lightning-fs": "^3.3.0",
|
|
73
|
+
"@isomorphic-git/pgp-plugin": "0.0.7",
|
|
74
|
+
"@semantic-release/exec": "3.3.6",
|
|
75
|
+
"@types/jest": "24.0.18",
|
|
76
|
+
"@types/node": "12.7.2",
|
|
77
|
+
"@wmhilton/jest-fixtures": "0.6.1",
|
|
78
|
+
"agadoo": "2.0.0",
|
|
79
|
+
"all-contributors-cli": "6.20.0",
|
|
80
|
+
"babel-core": "7.0.0-bridge.0",
|
|
81
|
+
"babel-loader": "8.0.6",
|
|
82
|
+
"browserfs": "2.0.0",
|
|
83
|
+
"bundlewatch": "^0.3.2",
|
|
84
|
+
"cross-env": "6.0.0",
|
|
85
|
+
"decompress": "^4.2.0",
|
|
86
|
+
"diff-lines": "1.1.1",
|
|
87
|
+
"duplicate-package-checker-webpack-plugin": "3.0.0",
|
|
88
|
+
"envify": "4.1.0",
|
|
89
|
+
"eslint": "^6.8.0",
|
|
90
|
+
"eslint-config-prettier": "^6.10.0",
|
|
91
|
+
"eslint-config-prettier-standard": "^3.0.1",
|
|
92
|
+
"eslint-config-standard": "^14.1.0",
|
|
93
|
+
"eslint-plugin-import": "^2.20.1",
|
|
94
|
+
"eslint-plugin-node": "^11.0.0",
|
|
95
|
+
"eslint-plugin-prettier": "^3.1.2",
|
|
96
|
+
"eslint-plugin-promise": "^4.2.1",
|
|
97
|
+
"eslint-plugin-standard": "^4.0.1",
|
|
98
|
+
"git-http-mock-server": "2.0.0",
|
|
99
|
+
"github-comment": "1.0.1",
|
|
100
|
+
"inquirer": "^7.0.0",
|
|
101
|
+
"jasmine-core": "3.4.0",
|
|
102
|
+
"jest": "24.9.0",
|
|
103
|
+
"jest-junit": "7.0.0",
|
|
104
|
+
"jsdoc-api": "5.0.3",
|
|
105
|
+
"karma": "2.0.5",
|
|
106
|
+
"karma-browserstack-launcher": "^1.5.1",
|
|
107
|
+
"karma-chrome-launcher": "3.1.0",
|
|
108
|
+
"karma-edge-launcher": "0.4.2",
|
|
109
|
+
"karma-fail-fast-reporter": "1.0.5",
|
|
110
|
+
"karma-firefox-launcher": "1.2.0",
|
|
111
|
+
"karma-ie-launcher": "1.0.0",
|
|
112
|
+
"karma-jasmine": "2.0.1",
|
|
113
|
+
"karma-junit-reporter": "1.2.0",
|
|
114
|
+
"karma-safari-launcher": "1.0.0",
|
|
115
|
+
"karma-sauce-launcher": "1.2.0",
|
|
116
|
+
"karma-verbose-reporter": "0.0.6",
|
|
117
|
+
"karma-webpack": "4.0.2",
|
|
118
|
+
"markdown-table": "1.1.3",
|
|
119
|
+
"nps": "^5.10.0",
|
|
120
|
+
"nps-utils": "1.7.0",
|
|
121
|
+
"prettier": "1.19.1",
|
|
122
|
+
"prettier-config-standard": "^1.0.1",
|
|
123
|
+
"pretty-format": "24.9.0",
|
|
124
|
+
"puppeteer": "2.0.0",
|
|
125
|
+
"replace-in-file": "4.1.3",
|
|
126
|
+
"rollup": "1.29.1",
|
|
127
|
+
"rollup-plugin-node-resolve": "5.2.0",
|
|
128
|
+
"semantic-release": "16.0.3",
|
|
129
|
+
"standard": "13.1.0",
|
|
130
|
+
"timeout-cli": "0.3.2",
|
|
131
|
+
"tweet-tweet": "1.0.4",
|
|
132
|
+
"typescript": "3.9.0-dev.20200223",
|
|
133
|
+
"webpack": "4.41.5",
|
|
134
|
+
"webpack-bundle-analyzer": "3.4.1",
|
|
135
|
+
"webpack-cli": "3.3.7"
|
|
136
|
+
},
|
|
137
|
+
"bundlewatch": {
|
|
138
|
+
"files": [
|
|
139
|
+
{
|
|
140
|
+
"path": "./index.umd.min.js",
|
|
141
|
+
"maxSize": "100kb"
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
"ci": {
|
|
145
|
+
"trackBranches": [
|
|
146
|
+
"main"
|
|
147
|
+
]
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
"collective": {
|
|
151
|
+
"type": "opencollective",
|
|
152
|
+
"url": "https://opencollective.com/isomorphic-git",
|
|
153
|
+
"logo": "https://opencollective.com/isomorphic-git/logo.txt"
|
|
154
|
+
}
|
|
155
|
+
}
|