forked from desktop/dugite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.95 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
{
"name": "dugite",
"version": "1.110.0",
"description": "Elegant bindings for Git",
"main": "./build/lib/index.js",
"typings": "./build/lib/index.d.ts",
"scripts": {
"clean": "rimraf build",
"build": "yarn clean && tsc -p ./tsconfig.json && tsc -p ./examples/tsconfig.json",
"prepack": "yarn build && yarn test",
"postpublish": "git push --follow-tags",
"test": "yarn test:fast && yarn test:slow && yarn 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": ">= 12"
},
"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",
"got": "^9.6.0",
"mkdirp": "^0.5.1",
"progress": "^2.0.3",
"rimraf": "^2.5.4",
"tar": "^4.4.7"
},
"devDependencies": {
"@types/checksum": "^0.1.30",
"@types/got": "^9.6.0",
"@types/jest": "^28.1.7",
"@types/mkdirp": "^0.5.2",
"@types/node": "^11.9.0",
"@types/progress": "^2.0.1",
"@types/rimraf": "2.0.2",
"byline": "^5.0.0",
"cross-env": "^5.2.0",
"find-git-exec": "0.0.1-alpha.2",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"temp": "^0.9.0",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
}
}