@pgpm/totp 0.7.2 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Makefile
CHANGED
package/README.md
CHANGED
|
@@ -69,13 +69,13 @@ pgpm deploy
|
|
|
69
69
|
```bash
|
|
70
70
|
# 1. Create a workspace
|
|
71
71
|
pgpm init --workspace
|
|
72
|
-
cd my-app
|
|
73
72
|
|
|
74
73
|
# 2. Create your first module
|
|
74
|
+
cd my-workspace
|
|
75
75
|
pgpm init
|
|
76
|
-
cd packages/your-module
|
|
77
76
|
|
|
78
|
-
# 3. Install a package
|
|
77
|
+
# 3. Install a package
|
|
78
|
+
cd packages/my-module
|
|
79
79
|
pgpm install @pgpm/totp
|
|
80
80
|
|
|
81
81
|
# 4. Deploy everything
|
package/launchql-totp.control
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgpm/totp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Time-based One-Time Password (TOTP) authentication",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"contributors": [
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"test:watch": "jest --watch"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@pgpm/base32": "0.
|
|
25
|
-
"@pgpm/verify": "0.
|
|
24
|
+
"@pgpm/base32": "0.9.0",
|
|
25
|
+
"@pgpm/verify": "0.9.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"pgpm": "^0.2.0"
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"bugs": {
|
|
36
36
|
"url": "https://github.com/launchql/pgpm-modules/issues"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "7cb34c75176e820a490de0442814425303a3ab1f"
|
|
39
39
|
}
|
|
File without changes
|