-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.3 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
{
"name": "gitly",
"version": "3.0.3",
"description": "An API to download and/or extract git repositories",
"main": "lib/main.js",
"repository": "github:iwatakeshi/gitly",
"author": "Takeshi Iwana <[email protected]>",
"license": "MIT",
"files": [
"lib/**/*"
],
"dependencies": {
"axios": "^1.7.9",
"cross-spawn": "^7.0.6",
"tar": "^7.4.3",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.3",
"@types/shelljs": "^0.8.15",
"@types/tar": "^6.1.13",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"scripts": {
"prepare": "npm run build",
"preversion": "",
"prepublishOnly": "npm run test",
"build": "tsc",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\" \"*.json\" \"*.md\""
},
"types": "lib/main.d.ts",
"keywords": [
"archive",
"bitbucket",
"download",
"extract",
"fetch",
"git",
"github",
"gitlab",
"offline-first",
"offline",
"project",
"repo",
"repository",
"scaffold",
"tarbarll",
"zip"
],
"engines": {
"node": ">=20.x"
}
}