X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=package.json;h=0bb03b619a11f78b5b9e248ff29e0947de050f84;hb=HEAD;hp=93016f6906374c3ece74cfa3e309397391f95ecb;hpb=2207e51e71606cbd1b4e3a688d450a79853dc8e9;p=squeep-totp diff --git a/package.json b/package.json index 93016f6..06c35aa 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,13 @@ { "name": "@squeep/totp", - "version": "1.0.0", + "version": "1.1.5", "description": "A minimal TOTP/HOTP helper.", "main": "index.js", "scripts": { + "audit": "npm audit", "coverage": "nyc npm test", - "eslint": "eslint *.js lib", + "coverage-check": "nyc check-coverage", + "eslint": "eslint index.js lib", "test": "mocha --recursive" }, "keywords": [ @@ -20,15 +22,27 @@ "engines": { "node": ">14" }, - "author": "", + "pre-commit": [ + "audit", + "eslint", + "coverage", + "coverage-check" + ], + "files": [ + "lib/**" + ], + "author": "Justin Wind ", "license": "ISC", "devDependencies": { - "eslint": "^8.48.0", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-security": "^1.7.1", - "eslint-plugin-sonarjs": "^0.21.0", - "mocha": "^10.2.0", - "nyc": "^15.1.0", - "sinon": "^15.2.0" + "@squeep/eslint-config": "^1", + "eslint": "^9", + "mocha": "^10", + "nyc": "^15", + "pre-commit": "^1", + "sinon": "^17" + }, + "dependencies": { + "base32.js": "^0.1.0", + "qrcode-svg": "^1.1.0" } }