1 changed files with 16 additions and 8 deletions
@ -1,11 +1,13 @@ |
|||||
{ |
{ |
||||
"name": "node-ufw", |
"name": "node-ufw", |
||||
"version": "2.0.0", |
"version": "2.0.1", |
||||
"description": "Manipulate UFW (Ubuntu distribution only) via Node.js.", |
"description": "Manipulate UFW (Ubuntu distribution only) via Node.js.", |
||||
"license": "MIT", |
"license": "MIT", |
||||
"typings": "dist/Typings.d.ts", |
"typings": "dist/Typings.d.ts", |
||||
"main": "dist/Index.js", |
"main": "dist/Index.js", |
||||
"files": [ "dist" ], |
"files": [ |
||||
|
"dist" |
||||
|
], |
||||
"funding": [ |
"funding": [ |
||||
{ |
{ |
||||
"type": "individual", |
"type": "individual", |
||||
@ -21,13 +23,19 @@ |
|||||
}, |
}, |
||||
"scripts": { |
"scripts": { |
||||
"test": "ava Test.ts", |
"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": { |
"author": { |
||||
"name": "Hizkia Ray", |
"name": "Hizkia Ray", |
||||
"email": "[email protected]", |
"email": "[email protected]", |
||||
|
Loading…
Reference in new issue