initial commit
[squeep-totp] / package.json
1 {
2 "name": "@squeep/totp",
3 "version": "1.0.0",
4 "description": "A minimal TOTP/HOTP helper.",
5 "main": "index.js",
6 "scripts": {
7 "coverage": "nyc npm test",
8 "eslint": "eslint *.js lib",
9 "test": "mocha --recursive"
10 },
11 "keywords": [
12 "OTP",
13 "TOTP",
14 "HOTP",
15 "OATH",
16 "rfc4226",
17 "rfc6238",
18 "2FA"
19 ],
20 "engines": {
21 "node": ">14"
22 },
23 "author": "",
24 "license": "ISC",
25 "devDependencies": {
26 "eslint": "^8.48.0",
27 "eslint-plugin-node": "^11.1.0",
28 "eslint-plugin-security": "^1.7.1",
29 "eslint-plugin-sonarjs": "^0.21.0",
30 "mocha": "^10.2.0",
31 "nyc": "^15.1.0",
32 "sinon": "^15.2.0"
33 }
34 }