initial commit
[squeep-totp] / package.json
diff --git a/package.json b/package.json
new file mode 100644 (file)
index 0000000..93016f6
--- /dev/null
@@ -0,0 +1,34 @@
+{
+  "name": "@squeep/totp",
+  "version": "1.0.0",
+  "description": "A minimal TOTP/HOTP helper.",
+  "main": "index.js",
+  "scripts": {
+    "coverage": "nyc npm test",
+    "eslint": "eslint *.js lib",
+    "test": "mocha --recursive"
+  },
+  "keywords": [
+    "OTP",
+    "TOTP",
+    "HOTP",
+    "OATH",
+    "rfc4226",
+    "rfc6238",
+    "2FA"
+  ],
+  "engines": {
+    "node": ">14"
+  },
+  "author": "",
+  "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"
+  }
+}