-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "turbo-downloader",
"author": "Denis Bezrukov <anthrax63@gmail.com>",
"version": "1.4.0",
"description": "",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@supercharge/promise-pool": "^2.1.0",
"axios": "^0.26.0",
"ts-node": "^10.5.0",
"typed-emitter": "^2.1.0",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.0",
"@types/temp": "^0.9.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"temp": "^0.9.4",
"ts-jest": "^27.1.3"
},
"scripts": {
"start": "ts-node index.ts",
"build": "tsc -p tsconfig.prod.json",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"lint": "eslint --fix \"src/**/*.ts\""
},
"keywords": [
"download",
"fast download",
"partial download",
"resumable download",
"electron",
"typescript"
],
"license": "ISC",
"repository": "https://github.com/aggregion/turbo-downloader.git",
"files": [
"dist",
"package.json",
"README.md"
]
}