-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "elex",
"version": "1.0.1",
"description": "Perform election speed check on list of gateways to find the fastest url",
"keywords": [
"speed",
"test",
"http",
"elect",
"elex"
],
"main": "build/index.js",
"typings": "build/index.d.ts",
"repository": "[email protected]:nampdn/elex.git",
"author": "Nam Pham <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"build/*",
"dist/*"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"prebuild": "npx rimraf dist"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/axios": "0.14.0",
"@types/jest": "29.5.13",
"@types/node": "20.16.11",
"@types/p-any": "1.1.3",
"@types/p-retry": "3.0.1",
"@types/p-some": "4.0.2",
"jest": "29.7.0",
"rimraf": "6.0.1",
"semantic-release": "24.1.2",
"ts-jest": "29.2.5",
"typescript": "5.6.2"
},
"dependencies": {
"axios": "1.7.7",
"p-any": "4.0.0",
"p-retry": "6.2.0",
"p-some": "6.0.0"
}
}