-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1009 Bytes
/
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
{
"name": "@codejockie/otp-gen",
"version": "1.0.4",
"description": "An OTP generator that implements RFC4226 (HOTP) and RFC6238 (TOTP)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build && npm test",
"test": "jest --config=jest.config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codejockie/otp-gen.git"
},
"keywords": [
"OTP",
"HOTP",
"TOTP"
],
"author": "John C. Kennedy",
"license": "MIT",
"bugs": {
"url": "https://github.com/codejockie/otp-gen/issues"
},
"homepage": "https://github.com/codejockie/otp-gen#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^14.0.1",
"codecov": "^3.7.0",
"husky": "^4.2.5",
"jest": "^29.7.0",
"ts-jest": "^25.5.1",
"typescript": "^3.9.2"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
}
}