-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 948 Bytes
/
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
{
"name": "file-downloader",
"version": "1.0.0",
"description": "simple file downloader",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm i && npm run build",
"build": "npm run lint && webpack",
"lint": "tslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlessMyCode/file-downloader.git"
},
"author": "Bless",
"license": "ISC",
"bugs": {
"url": "https://github.com/BlessMyCode/file-downloader/issues"
},
"homepage": "https://github.com/BlessMyCode/file-downloader#readme",
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "^17.0.21",
"ts-loader": "^9.2.7",
"tslint": "^6.1.3",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"minimist": "^1.2.5",
"node": "^17.5.0"
}
}