-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.06 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.06 KB
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
{
"name": "internet_speed_test",
"version": "1.2.0",
"description": "A simple command line tool to measure both download and upload internet speed",
"main": "dist/internetSpeed.js",
"files": [
"dist"
],
"scripts": {
"start": "node dist/internetSpeed.js",
"build:dev": "webpack --watch --config webpack.config.dev.js",
"build:prod": "webpack --config webpack.config.prod.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"internet",
"speed"
],
"homepage": "https://github.com/FarisMarouane/internetSpeedTest",
"author": "Marouane Faris",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.8.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"chalk": "^2.4.2",
"command-line-usage": "^6.0.2",
"external-ip": "^2.1.1",
"haversine": "^1.1.1",
"ink": "^3.2.0",
"ink-spinner": "^4.0.3",
"iplocation": "^6.1.0",
"public-ip": "^3.2.0",
"react": "^17.0.2",
"request": "^2.88.0",
"rxjs": "^7.8.1"
},
"bin": {
"internetSpeed": "./dist/internetSpeed.js"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.22.5",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.0.0",
"prettier": "1.18.2",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"engines": {
"node": ">=16.13.0 <17.0.0"
}
}