UNPKG

2.04 kBJSONView Raw
1{
2 "name": "dugite",
3 "version": "1.82.0",
4 "description": "Elegant bindings for Git",
5 "main": "./build/lib/index.js",
6 "typings": "./build/lib/index.d.ts",
7 "scripts": {
8 "clean": "rimraf build",
9 "build": "npm run clean && tsc -p ./tsconfig.json && tsc -p ./examples/tsconfig.json",
10 "prepack": "npm run build && npm run test",
11 "postpublish": "git push --follow-tags",
12 "test": "npm run test:fast && npm run test:slow && npm run test:external",
13 "test:fast": "cross-env LOCAL_GIT_DIRECTORY=./git/ jest --runInBand --silent --config ./jest.fast.config.js",
14 "test:slow": "cross-env LOCAL_GIT_DIRECTORY=./git/ jest --runInBand --silent --config ./jest.slow.config.js",
15 "test:external": "jest --runInBand --silent --config ./jest.external.config.js",
16 "postinstall": "node ./script/download-git.js",
17 "prettify": "prettier \"{examples,lib,script,test}/**/*.ts\" --write",
18 "is-it-pretty": "prettier --check \"{examples,lib,script,test}/**/*.ts\"",
19 "update-embedded-git": "node ./script/update-embedded-git.js"
20 },
21 "engines": {
22 "node": ">= 6",
23 "npm": ">= 3"
24 },
25 "repository": {
26 "type": "git",
27 "url": "git+https://github.com/desktop/dugite.git"
28 },
29 "author": "GitHub and contributors",
30 "license": "MIT",
31 "bugs": {
32 "url": "https://github.com/desktop/dugite/issues"
33 },
34 "homepage": "https://github.com/desktop/dugite#readme",
35 "dependencies": {
36 "checksum": "^0.1.1",
37 "mkdirp": "^0.5.1",
38 "progress": "^2.0.3",
39 "request": "^2.88.0",
40 "rimraf": "^2.5.4",
41 "tar": "^4.4.7"
42 },
43 "devDependencies": {
44 "@types/checksum": "^0.1.30",
45 "@types/jest": "^23.3.9",
46 "@types/mkdirp": "^0.5.2",
47 "@types/node": "^10.12.15",
48 "@types/progress": "^2.0.1",
49 "@types/request": "^2.47.1",
50 "@types/rimraf": "2.0.2",
51 "byline": "^5.0.0",
52 "cross-env": "^5.2.0",
53 "find-git-exec": "0.0.1-alpha.2",
54 "jest": "^23.6.0",
55 "prettier": "^1.15.2",
56 "temp": "^0.9.0",
57 "ts-jest": "^23.10.4",
58 "typescript": "^3.1.6"
59 }
60}