UNPKG

4.33 kBJSONView Raw
1{
2 "name": "isomorphic-git",
3 "version": "1.24.3",
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": ">=12"
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": "^4.0.1"
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.1",
72 "@isomorphic-git/lightning-fs": "^3.3.0",
73 "@isomorphic-git/pgp-plugin": "0.0.7",
74 "@semantic-release/exec": "5.0.0",
75 "@types/jest": "^27.5.1",
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.3.0",
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.99.1",
102 "jest": "^27.5.1",
103 "jest-junit": "^15.0.0",
104 "jsdoc-api": "5.0.3",
105 "karma": "^6.3.18",
106 "karma-browserstack-launcher": "^1.6.0",
107 "karma-chrome-launcher": "^3.1.1",
108 "karma-edge-launcher": "0.4.2",
109 "karma-fail-fast-reporter": "1.0.5",
110 "karma-firefox-launcher": "^2.1.2",
111 "karma-ie-launcher": "1.0.0",
112 "karma-jasmine": "^5.0.0",
113 "karma-junit-reporter": "^2.0.1",
114 "karma-safari-launcher": "1.0.0",
115 "karma-sauce-launcher": "1.2.0",
116 "karma-verbose-reporter": "0.0.8",
117 "karma-webpack": "4.0.2",
118 "markdown-table": "^2.0.0",
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": "17.4.7",
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 "prettier": "./.prettierrc.cjs",
138 "bundlewatch": {
139 "files": [
140 {
141 "path": "./index.umd.min.js",
142 "maxSize": "100kb"
143 }
144 ],
145 "ci": {
146 "trackBranches": [
147 "main"
148 ]
149 }
150 },
151 "collective": {
152 "type": "opencollective",
153 "url": "https://opencollective.com/isomorphic-git",
154 "logo": "https://opencollective.com/isomorphic-git/logo.txt"
155 }
156}