-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.42 KB
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
{
"name": "git-dld",
"description": "Download files or folder from GitHub",
"version": "0.0.12",
"license": "MIT",
"author": "Zeeshan Ahmad <ziishaned@gmail.com>",
"main": "build/index.js",
"bin": {
"git-dld": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"lint": "eslint . --ext .ts",
"build": "rm -rf build && tsc",
"start": "ts-node ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ziishaned/git-dld.git"
},
"bugs": {
"url": "https://github.com/ziishaned/git-dld/issues"
},
"homepage": "https://github.com/ziishaned/git-dld#readme",
"keywords": [
"git",
"clone",
"github",
"github-downloader"
],
"dependencies": {
"github-url-parse": "^0.1.0",
"is-github-url": "^1.2.2",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.0",
"ora": "^4.0.4",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/eslint": "^7.2.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.0.13",
"@types/node-fetch": "^2.5.7",
"@types/prettier": "^2.0.1",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}