-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "netsh-rule",
"version": "1.0.5",
"author": "Max Zakharzhevskiy",
"description": "Utility to generate a batch file to manage inbound and outbound Windows firewall connections for a single exe file or all exe files in folder",
"license": "MIT",
"main": "dist/cli.js",
"bin": "dist/cli.js",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=10.16.0"
},
"keywords": [
"generate",
"netsh",
"batch",
"poswershell",
"javascript",
"typescript"
],
"scripts": {
"dev": "tsc -w",
"build": "rm -rf dist && tsc",
"prepublish": "yarn build"
},
"dependencies": {
"chalk": "^4.1.0",
"minimist": "1.2.7"
},
"devDependencies": {
"@types/node": "18.11.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxzz/netsh-rule.git"
},
"bugs": {
"url": "https://github.com/maxzz/netsh-rule/issues"
}
}