forked from desktop/dugite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.05 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.81.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",
"prepack": "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/ jest --runInBand --silent --config ./jest.fast.config.js",
"test:slow": "cross-env LOCAL_GIT_DIRECTORY=./git/ jest --runInBand --silent --config ./jest.slow.config.js",
"test:external": "jest --runInBand --silent --config ./jest.external.config.js",
"postinstall": "node ./script/download-git.js",
"prettify": "prettier \"{examples,lib,script,test}/**/*.ts\" --write",
"is-it-pretty": "prettier --check \"{examples,lib,script,test}/**/*.ts\"",
"update-embedded-git": "node ./script/update-embedded-git.js"
},
"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.3",
"request": "^2.88.0",
"rimraf": "^2.5.4",
"tar": "^4.4.7"
},
"devDependencies": {
"@types/checksum": "^0.1.30",
"@types/jest": "^23.3.9",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.15",
"@types/progress": "^2.0.1",
"@types/request": "^2.47.1",
"@types/rimraf": "2.0.2",
"byline": "^5.0.0",
"cross-env": "^5.2.0",
"find-git-exec": "0.0.1-alpha.2",
"jest": "^23.6.0",
"prettier": "^1.15.2",
"temp": "^0.9.0",
"ts-jest": "^23.10.4",
"ts-node": "^8.0.1",
"typescript": "^3.1.6"
}
}