-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathpackage.json
62 lines (62 loc) · 2.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "dugite",
"version": "1.69.0",
"description": "Elegant bindings for Git",
"main": "./build/lib/index.js",
"typings": "./build/lib/index.d.ts",
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && tsc -p ./tsconfig.json && tsc -p ./examples/tsconfig.json",
"prepare": "npm run build && npm run test",
"postpublish": "git push --follow-tags",
"test": "npm run test:fast && npm run test:slow && npm run test:external",
"test:fast": "cross-env LOCAL_GIT_DIRECTORY=./git/ mocha --require ts-node/register test/fast/*.ts test/auth/*.ts",
"test:slow": "cross-env LOCAL_GIT_DIRECTORY=./git/ mocha -t 20000ms --require ts-node/register test/slow/*.ts test/auth/*.ts",
"test:external": "mocha -t 20000ms --require ts-node/register test/external/*.ts",
"postinstall": "node ./script/download-git.js",
"prettify": "prettier \"{examples,lib,script,test}/**/*.ts\" --write",
"is-it-pretty": "prettier \"{examples,lib,script,test}/**/*.ts\" --list-different"
},
"engines": {
"node": ">= 6",
"npm": ">= 3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/desktop/dugite.git"
},
"author": "GitHub and contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/desktop/dugite/issues"
},
"homepage": "https://github.com/desktop/dugite#readme",
"dependencies": {
"checksum": "^0.1.1",
"mkdirp": "^0.5.1",
"progress": "^2.0.0",
"request": "^2.86.0",
"rimraf": "^2.5.4",
"tar": "^4.0.2"
},
"devDependencies": {
"@types/chai": "^4.0.5",
"@types/checksum": "^0.1.30",
"@types/mkdirp": "^0.5.1",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.53",
"@types/progress": "^2.0.0",
"@types/request": "^2.0.8",
"@types/rimraf": "2.0.2",
"byline": "^5.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.1.1",
"find-git-exec": "0.0.1-alpha.2",
"mocha": "^4.0.1",
"prettier": "^1.8.2",
"temp": "^0.8.3",
"ts-node": "^3.0.2",
"typescript": "^2.6.1"
}
}