1 changed files with 16 additions and 8 deletions
@ -1,11 +1,13 @@ |
|||
{ |
|||
"name": "node-ufw", |
|||
"version": "2.0.0", |
|||
"version": "2.0.1", |
|||
"description": "Manipulate UFW (Ubuntu distribution only) via Node.js.", |
|||
"license": "MIT", |
|||
"typings": "dist/Typings.d.ts", |
|||
"main": "dist/Index.js", |
|||
"files": [ "dist" ], |
|||
"files": [ |
|||
"dist" |
|||
], |
|||
"funding": [ |
|||
{ |
|||
"type": "individual", |
|||
@ -21,13 +23,19 @@ |
|||
}, |
|||
"scripts": { |
|||
"test": "ava Test.ts", |
|||
"build": "rm -rf dist && tsc -p tsconfig.json" |
|||
"build": "rm -rf dist && tsc -p tsconfig.json" |
|||
}, |
|||
"ava": { |
|||
"extensions": [ |
|||
"ts" |
|||
], |
|||
"environmentVariables": { |
|||
"TS_NODE_LOG_ERROR": "true" |
|||
}, |
|||
"require": [ |
|||
"ts-node/register" |
|||
] |
|||
}, |
|||
"ava": { |
|||
"extensions": [ "ts" ], |
|||
"environmentVariables": { "TS_NODE_LOG_ERROR": "true" }, |
|||
"require": [ "ts-node/register" ] |
|||
}, |
|||
"author": { |
|||
"name": "Hizkia Ray", |
|||
"email": "[email protected]", |
|||
|
Loading…
Reference in new issue