You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1004 B
58 lines
1004 B
{
|
|
"name": "node-ufw",
|
|
"version": "1.0.0-alpha.7",
|
|
"description": "Manipulate UFW (Linux distribution only, works best on Ubuntu) via Node.",
|
|
"license": "MIT",
|
|
"typings": "./index.d.ts",
|
|
"main": "./index.js",
|
|
"files": [
|
|
"src/**/*", "index.js", "index.d.ts", "package.json"
|
|
],
|
|
"exports": {
|
|
".": [
|
|
{
|
|
"require": "./index.js"
|
|
},
|
|
"./index.js"
|
|
]
|
|
},
|
|
"funding": [
|
|
{
|
|
"type": "individual",
|
|
"url": "https://trakteer.id/ray1337"
|
|
},
|
|
{
|
|
"type": "paypal",
|
|
"url": "https://paypal.me/ray0001"
|
|
}
|
|
],
|
|
"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.js"
|
|
},
|
|
"author": {
|
|
"name": "Hizkia Ray",
|
|
"email": "[email protected]",
|
|
"url": "https://13373333.one"
|
|
},
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"keywords": [
|
|
"ufw",
|
|
"firewall",
|
|
"ubuntu",
|
|
"sudo",
|
|
"linux",
|
|
"cli"
|
|
],
|
|
"devDependencies": {
|
|
"ava": "^4.2.0"
|
|
}
|
|
}
|
|
|