Browse Source

v2.0.1

develop
Rob Colbert 2 years ago
parent
commit
75ccfa3a1f
  1. 24
      package.json

24
package.json

@ -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…
Cancel
Save