-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (54 loc) · 1.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "xotp",
"description": "One-Time Password (HOTP/TOTP) library for Node.js with support for Google Authenticator.",
"author": "Farshid Beheshti",
"version": "1.0.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/types/index.d.js",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run clean && tsc",
"prepare": "npm run build",
"clean": "rimraf ./dist",
"start:dev": "npx nodemon ./src/index.ts",
"test:coverage": "rimraf ./coverage & jest --coverage",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farshidbeheshti/xotp.git"
},
"bugs": "https://github.com/farshidbeheshti/xotp/issues",
"homepage": "https://github.com/farshidbeheshti/xotp",
"license": "MIT",
"keywords": [
"otp",
"totp",
"hotp",
"two-factor authentication",
"2fa",
"one time password",
"google authenticator",
"authenticator",
"multi-factor authentication",
"time-based one-time password",
"authentication",
"2 factor"
],
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.6",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}