-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "basic32",
"version": "1.0.0",
"description": "Transform decimal OTP codes to shorter Base32 codes",
"main": "dist/Basic32.js",
"scripts": {
"build": "babel Basic32.ts --out-file dist/Basic32.js --source-maps && tsc",
"test": "node ./tests/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/russellsteadman/basic32.git"
},
"keywords": [
"otp",
"base32",
"totp",
"hotp",
"tfa",
"2fa"
],
"author": "Russell Steadman <steadman.21@osu.edu> (https://www.russellsteadman.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/russellsteadman/basic32/issues",
"email": "steadman.21@osu.edu"
},
"private": false,
"homepage": "https://github.com/russellsteadman/basic32#readme",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"types": "dist/Basic32.d.ts",
"typings": "dist/Basic32.d.ts"
}