-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.08 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
46
47
48
49
{
"name": "@sunknudsen/totp",
"version": "1.1.1",
"description": "Generate and validate TOTP tokens.",
"main": "dist/index.js",
"files": [
"dist/",
"package.json",
"LICENCE",
"README.md"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.19.39",
"jest": "^29.7.0",
"npm-check-updates": "^16.14.20",
"typescript": "^4.9.5"
},
"scripts": {
"code": "tsc -w",
"build": "rm -fr dist/*; tsc",
"test": "jest dist/test.js",
"prepublishOnly": "npm run build",
"ncu": "ncu --target minor --upgrade"
},
"author": "Sun Knudsen <hello@sunknudsen.com>",
"license": "MIT",
"keywords": [
"cryptography"
],
"repository": {
"type": "git",
"url": "https://github.com/sunknudsen/totp.git"
},
"bugs": {
"url": "https://github.com/sunknudsen/totp/issues"
},
"homepage": "https://github.com/sunknudsen/totp#readme",
"prettier": {
"endOfLine": "lf",
"printWidth": 80,
"semi": false,
"tabWidth": 2,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
}
}