-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.45 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
{
"name": "tcping",
"version": "2.1.0",
"description": "TCP ping cli tool",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest",
"postinstall": "husky install",
"precommit": "lint-staged && npm run build && npm test",
"preversion": "npm test",
"postversion": "npm publish",
"prepublishOnly": "npm run build && pinst --disable",
"postpublish": "git push origin master --tags; pinst --enable"
},
"bin": {
"tcping": "dist/cli.js"
},
"author": "nimbus117",
"license": "ISC",
"keywords": [
"cli",
"ping",
"TCP"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nimbus117/tcping.git"
},
"files": [
"src/",
"dist/"
],
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint_d": "^10.0.4",
"husky": "^5.1.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"dependencies": {
"chalk": "^4.1.0",
"meow": "^9.0.0",
"ora": "^5.4.0"
},
"lint-staged": {
"./**/*.{js,ts}": [
"eslint --fix"
],
"./**/*.{json}": [
"prettier --write"
]
}
}