-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.31 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
{
"private": true,
"name": "axios-parallel",
"version": "1.1.0",
"description": "Multithreaded async requests sender using Axios & Workers",
"author": "Jove Jonovski <[email protected]>",
"license": "MIT",
"main": "./dist/index.js",
"type": "commonjs",
"typings": "./index.d.ts",
"scripts": {
"start": "node .",
"serve": "ntwc serve",
"build": "ntwc build"
},
"devDependencies": {
"@types/node": "^16.4.9",
"@types/object-path": "^0.11.1",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2"
},
"engines": {
"node": ">=8.10.0"
},
"dependencies": {
"axios": "^0.21.1",
"object-path": "^0.11.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datyin/axios-parallel.git"
},
"bugs": {
"url": "https://github.com/datyin/axios-parallel/issues"
},
"homepage": "https://github.com/datyin/axios-parallel#readme",
"keywords": [
"ajax",
"async",
"axios",
"backend",
"fetch",
"http",
"multi-requests",
"multi-threaded",
"node",
"parallel",
"promise",
"request",
"scrape",
"thread",
"worker",
"xhr"
]
}