-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.23 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
80
81
82
83
84
85
86
87
88
{
"name": "nsrace",
"version": "1.0.1",
"description": "Runs a race, lookups the fastest IP of any domain from different DNS servers",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"types": "./dist/types/index.d.js",
"bin": {
"nsrace": "dist/esm/bin/nsrace",
"nsrace-add": "dist/esm/bin/nsrace-add",
"nsrace-list": "dist/esm/bin/nsrace-list",
"nsrace-remove": "dist/esm/bin/nsrace-remove",
"nsrace-run": "dist/esm/bin/nsrace-run"
},
"files": [
"dist"
],
"engines": {
"node": ">= 16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imyelo/nsrace.git"
},
"author": "yelo <zhihuzeye@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/imyelo/nsrace/issues"
},
"homepage": "https://github.com/imyelo/nsrace#readme",
"dependencies": {
"chalk": "^5.0.1",
"cli-table": "^0.3.11",
"commander": "^9.4.0",
"conf": "^10.1.2",
"dns2": "^2.0.2",
"got": "^12.1.0",
"just-flatten-it": "^5.0.1",
"just-remove": "^3.0.1",
"just-unique": "^4.0.1",
"native-dns": "^0.7.0",
"ora": "^6.1.2",
"p-all": "^4.0.0",
"p-timeout": "^5.1.0",
"performance-now": "^2.1.0",
"tcp-ping": "^0.1.1",
"text-table": "^0.2.0"
},
"devDependencies": {
"@types/cli-table": "^0.3.0",
"@types/tcp-ping": "^0.1.3",
"@types/text-table": "^0.2.2",
"@yelo/eslint-config": "^0.0.4",
"@yelo/prettier-config": "^0.0.1",
"@yelo/tsconfig": "^0.0.2",
"eslint": "^8.20.0",
"gulp": "^4.0.2",
"gulp-chmod": "^3.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"np": "^7.6.2",
"prettier": "^2.7.1",
"prettier-eslint-cli": "^6.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.esm.json && node ./build/chmod-bin.js",
"lint": "prettier-eslint --write $PWD/\"src/**/*.[jt]s?(x)\" ",
"release": "np"
},
"prettier": "@yelo/prettier-config",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}