isomorphic-git
Version:
A pure JavaScript implementation of git for node and browsers!
150 lines (149 loc) • 4.09 kB
JSON
{
"name": "isomorphic-git",
"version": "0.17.1",
"description": "A pure JavaScript implementation of git for node and browsers!",
"typings": "./src/index.d.ts",
"main": "dist/for-node/isomorphic-git/index.js",
"browser": {
"isomorphic-git": "./dist/bundle.umd.min.js",
"isomorphic-git/internal-apis": "./dist/internal.umd.min.js"
},
"module": "dist/for-future/isomorphic-git/index.js",
"unpkg": "dist/bundle.umd.min.js",
"bin": {
"isogit": "./cli.js"
},
"sideEffects": false,
"engines": {
"node": ">=7.6.0"
},
"scripts": {
"pack": "webpack",
"start": "nps",
"format": "nps format",
"build": "nps build",
"test": "nps test",
"precommit": "ban",
"prepush": "nps lint",
"prepublishOnly": "nps prepublish",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"postinstall": "opencollective postinstall",
"add-contributor": "nps contributors.add"
},
"repository": {
"type": "git",
"url": "https://github.com/isomorphic-git/isomorphic-git.git"
},
"keywords": [
"git",
"isomorphic"
],
"author": "William Hilton <wmhilton@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/isomorphic-git/isomorphic-git/issues"
},
"homepage": "https://isomorphic-git.github.io/",
"files": [
"dist",
"cli.js",
"src/index.d.ts"
],
"dependencies": {
"async-lock": "^1.1.0",
"babel-runtime": "^6.26.0",
"buffercursor": "0.0.12",
"clean-git-ref": "1.0.3",
"crc": "^3.5.0",
"debug": "^3.1.0",
"diff-lines": "^1.1.0",
"git-apply-delta": "0.0.7",
"git-list-pack": "0.0.10",
"ignore": "^3.3.7",
"lodash.sortby": "^4.7.0",
"marky": "^1.2.0",
"minimisted": "^2.0.0",
"opencollective": "^1.0.3",
"pad": "^2.0.3",
"pako": "^1.0.6",
"pify": "^3.0.0",
"sha.js": "^2.4.9",
"shasum": "^1.0.2",
"simple-concat": "^1.0.0",
"simple-get": "^3.0.2",
"split2": "^2.2.0",
"stream-source": "^0.3.5",
"through2": "^2.0.3"
},
"devDependencies": {
"@semantic-release/exec": "2.2.4",
"@types/node": "9.6.12",
"all-contributors-cli": "4.11.1",
"babel-core": "6.26.3",
"babel-loader": "7.1.4",
"babel-preset-env": "1.7.0",
"ban-sensitive-files": "1.9.2",
"browserfs": "2.0.0",
"buffer-to-stream": "1.0.0",
"bundlesize": "0.17.0",
"codecov": "3.0.2",
"cross-env": "5.1.5",
"envify": "4.1.0",
"fetch-mock": "6.3.0",
"husky": "0.14.3",
"jasmine": "3.1.0",
"jasmine-core": "3.1.0",
"jest": "22.4.3",
"jest-fixtures": "wmhilton-contrib/jest-fixtures#win32",
"karma": "2.0.2",
"karma-chrome-launcher": "2.2.0",
"karma-edge-launcher": "0.4.2",
"karma-firefox-launcher": "1.1.0",
"karma-git-http-server-middleware": "1.1.0",
"karma-jasmine": "1.1.2",
"karma-sauce-launcher": "1.2.0",
"karma-verbose-reporter": "0.0.6",
"karma-webpack": "3.0.0",
"nock": "9.2.5",
"nps": "5.9.0",
"nps-utils": "1.5.0",
"openpgp": "2.6.2",
"organize-js-imports": "1.2.1",
"parse-header-stream": "1.1.1",
"prettier-standard": "8.0.1",
"pretty-format": "22.4.3",
"puppeteer": "1.4.0",
"replace-in-file": "3.4.0",
"rollup": "0.58.2",
"semantic-release": "15.4.1",
"standard": "11.0.1",
"travis-deploy-once": "5.0.0",
"tweet-tweet": "1.0.4",
"typescript": "2.8.3",
"webpack": "4.8.2",
"webpack-cli": "2.1.3"
},
"jest": {
"testRegex": "/__tests__/[^\\/]+\\.js",
"moduleNameMapper": {
"^isomorphic-git$": "<rootDir>/src",
"^isomorphic-git/(.+)$": "<rootDir>/src/$1"
},
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/__tests__/__helpers__"
],
"testEnvironment": "node"
},
"bundlesize": [
{
"path": "./dist/bundle.umd.min.js"
}
],
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/isomorphic-git",
"logo": "https://opencollective.com/isomorphic-git/logo.txt"
}
}