-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "gitlab-download",
"version": "2.0.0",
"description": "Download and extract a Gitlab repository from node.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"module": "lib/index.js",
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eyolas/gitlab-download.git"
},
"files": [
"lib",
"src"
],
"keywords": [
"download",
"gitlab",
"repo",
"repository"
],
"author": "David Touzet <[email protected]>",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/eyolas/gitlab-download/issues"
},
"homepage": "https://github.com/eyolas/gitlab-download#readme",
"dependencies": {
"download": "^7.1.0",
"normalize-url": "^4.5.0",
"tslib": "^1.10.0",
"underscore.string": "^3.1.1",
"uri-template": "^1.0.0"
},
"devDependencies": {
"@gabliam/tslint": "^1.0.2",
"@types/download": "^6.2.4",
"@types/node": "^12.12.20",
"@types/normalize-url": "^4.2.0",
"rimraf": "^3.0.0",
"tslint": "^5.20.1",
"typescript": "^3.7.3"
}
}