-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 911 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
{
"name": "minimal-cognito-totp",
"version": "1.0.1",
"description": "Minimal implementation to turn cognito b32 TOTP seeds into 6 digit codes, for unit testing with TOTP SMS",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf tsconfig.tsbuildinfo dist",
"build": "npm run clean && tsc --build --force",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ravenscar/minimal-cognito-totp.git"
},
"keywords": [
"test",
"totp",
"cognito",
"b32"
],
"author": "Paul Nilsson",
"license": "MIT",
"bugs": {
"url": "https://github.com/ravenscar/minimal-cognito-totp/issues"
},
"homepage": "https://github.com/ravenscar/minimal-cognito-totp#readme",
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.20",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}