-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 859 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 859 Bytes
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
{
"name": "otp",
"version": "2.0.1",
"description": "OTP utility for Google Authenticator",
"exports": "./dist/otp.js",
"type": "module",
"keywords": [
"one-time-password",
"google authenticator",
"hotp",
"totp",
"otp"
],
"files": [
"dist/otp.js",
"dist/otp.d.ts",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "tsc --build --verbose",
"prepublishOnly": "npm run build",
"postversion": "git push --follow-tags",
"lint": "biome lint --write",
"format": "biome format --write",
"test": "node --test src/base32.t.ts"
},
"author": {
"name": "Philipp Dunkel",
"email": "pip@pipobscure.com"
},
"license": "EUPL-1.2",
"repository": {
"type": "git",
"url": "git://github.com/pipobscure/otp"
},
"devDependencies": {
"@pipobscure/biome": "^1.0.0",
"@types/node": "^20.10.6",
"typescript": "^5.3.3"
}
}