-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "speedscan",
"version": "1.0.0",
"description": "A TypeScript-powered CLI tool for checking internet speed using the speedtest-net package.",
"main": "index.js",
"bin": {
"speedscan": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli/index.js",
"test": "npx jest",
"lint": "npx eslint src/**/*.ts",
"format": "npx prettier --write src/**/*.ts",
"dev": "npm run build & npm run start"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.3.0",
"@types/speedtest-net": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"speedtest-net": "^2.2.0",
"yargs": "^17.7.2"
}
}