-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "axios-multi-down",
"author": "lqzh",
"license": "MIT",
"version": "1.1.2",
"description": "Axios plugin, Speed up the download process by using multiple Axios requests to fetch a single file.",
"keywords": [
"AxiosMultiDown",
"axios",
"multiple",
"download"
],
"homepage": "https://github.com/lqzhgood/axios-multi-down",
"bugs": {
"url": "https://github.com/lqzhgood/axios-multi-down/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lqzhgood/axios-multi-down.git"
},
"files": [
"lib"
],
"main": "./lib/index.umd.js",
"module": "./lib/AxiosMultiDown.mjs",
"exports": {
".": {
"types": "./lib/src/index.d.ts",
"import": "./lib/AxiosMultiDown.mjs",
"require": "./lib/AxiosMultiDown.umd.js"
},
"./*": "./*"
},
"typings": "./lib/src/index.d.ts",
"scripts": {
"dev": "vite --open /test/e2e/browser.html",
"pretest": "npm run format",
"test": "jest",
"server": "ts-node test\\utils\\startServer.ts",
"build": "vue-tsc --noEmit && vite build",
"prepare": "husky install",
"format": "eslint ./src --fix && prettier ./src --write --ignore-unknown",
"prerelease": "npm run build",
"release": "npm version -m \"New version: %s\"",
"postrelease": "npm publish"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/lodash": "^4.14.199",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.6.0"
},
"dependencies": {
"axios": "^1.5.0",
"lodash": "^4.17.21",
"ts-node": "^10.9.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
}
}