-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.03 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
{
"name": "node-ufw",
"version": "2.0.0",
"description": "Manipulate UFW (Ubuntu distribution only) via Node.js.",
"license": "MIT",
"typings": "dist/Typings.d.ts",
"main": "dist/Index.js",
"files": [ "dist" ],
"funding": [
{
"type": "individual",
"url": "https://trakteer.id/ray1337"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ray-1337/node-ufw.git"
},
"bugs": {
"url": "https://github.com/ray-1337/node-ufw/issues"
},
"scripts": {
"test": "ava Test.ts",
"build": "rm -rf dist && tsc -p tsconfig.json"
},
"ava": {
"extensions": [ "ts" ],
"environmentVariables": { "TS_NODE_LOG_ERROR": "true" },
"require": [ "ts-node/register" ]
},
"author": {
"name": "Hizkia Ray",
"email": "personal@13373333.one",
"url": "https://13373333.one"
},
"engines": {
"node": ">=16"
},
"keywords": [
"ufw",
"firewall",
"ubuntu",
"sudo",
"linux",
"cli"
],
"devDependencies": {
"@types/node": "^20.2.5",
"ava": "^4.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}