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.
62 lines
1.2 KiB
62 lines
1.2 KiB
{
|
|
"name": "dtp-node-ufw",
|
|
"version": "2.0.4",
|
|
"description": "Manipulate UFW (Ubuntu distribution only) via Node.js without process root privileges.",
|
|
"license": "MIT",
|
|
"typings": "dist/Typings.d.ts",
|
|
"main": "dist/Index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"funding": [
|
|
{
|
|
"type": "individual",
|
|
"url": "https://www.givesendgo.com/dtp"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.digitaltelepresence.com/digital-telepresence/dtp-node-ufw.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://git.digitaltelepresence.com/digital-telepresence/dtp-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": "[email protected]",
|
|
"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",
|
|
"tslib": "^2.6.0",
|
|
"typescript": "^5.1.3"
|
|
}
|
|
}
|
|
|