refactor: easier comparables, fix audits (#614)

This commit is contained in:
Jef LeCompte
2020-10-29 16:27:09 -04:00
committed by GitHub
parent e5b0d7983b
commit 13edbf311e
9 changed files with 12636 additions and 4213 deletions
+4 -4
View File
@@ -3,7 +3,8 @@
"description": "🔮 For all your Nvidia needs",
"main": "src/index.ts",
"scripts": {
"build": "rimraf ./build && tsc",
"all": "npm run build && npm run lint",
"build": "tsc",
"lint": "xo",
"lint:fix": "xo --fix",
"start": "npm run build && node build/index.js",
@@ -31,7 +32,7 @@
"messaging-api-telegram": "^1.0.1",
"mqtt": "^4.2.3",
"node-notifier": "^8.0.0",
"node-pagerduty": "^1.3.4",
"node-pagerduty": "^1.2.0",
"nodemailer": "^6.4.14",
"open": "^7.3.0",
"play-sound": "^1.1.3",
@@ -58,7 +59,6 @@
"@types/twitter": "^1.7.0",
"husky": "^4.3.0",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"webpack": "^5.3.0",
@@ -73,7 +73,7 @@
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
"pre-commit": "npm run all"
}
}
}