UNPKG

2.09 kBJSONView Raw
1{
2 "name": "dugite",
3 "version": "1.66.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 "prepare": "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/ mocha --require ts-node/register test/fast/*.ts test/auth/*.ts",
14 "test:slow": "cross-env LOCAL_GIT_DIRECTORY=./git/ mocha -t 20000ms --require ts-node/register test/slow/*.ts test/auth/*.ts",
15 "test:external": "mocha -t 20000ms --require ts-node/register test/external/*.ts",
16 "postinstall": "node ./script/download-git.js",
17 "prettify": "prettier \"{examples,lib,script,test}/**/*.ts\" --write",
18 "is-it-pretty": "prettier \"{examples,lib,script,test}/**/*.ts\" --list-different"
19 },
20 "engines": {
21 "node": ">= 6",
22 "npm": ">= 3"
23 },
24 "repository": {
25 "type": "git",
26 "url": "git+https://github.com/desktop/dugite.git"
27 },
28 "author": "GitHub and contributors",
29 "license": "MIT",
30 "bugs": {
31 "url": "https://github.com/desktop/dugite/issues"
32 },
33 "homepage": "https://github.com/desktop/dugite#readme",
34 "dependencies": {
35 "checksum": "^0.1.1",
36 "mkdirp": "^0.5.1",
37 "progress": "^2.0.0",
38 "request": "^2.86.0",
39 "rimraf": "^2.5.4",
40 "tar": "^4.0.2"
41 },
42 "devDependencies": {
43 "@types/chai": "^4.0.5",
44 "@types/checksum": "^0.1.30",
45 "@types/mkdirp": "^0.5.1",
46 "@types/mocha": "^2.2.44",
47 "@types/node": "^8.0.53",
48 "@types/progress": "^2.0.0",
49 "@types/request": "^2.0.8",
50 "@types/rimraf": "2.0.2",
51 "byline": "^5.0.0",
52 "chai": "^4.1.2",
53 "chai-as-promised": "^7.1.1",
54 "cross-env": "^5.1.1",
55 "find-git-exec": "0.0.1-alpha.2",
56 "mocha": "^4.0.1",
57 "prettier": "^1.8.2",
58 "temp": "^0.8.3",
59 "ts-node": "^3.0.2",
60 "typescript": "^2.6.1"
61 }
62}