-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.39 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@thomaschaplin/image-to-totp",
"version": "2.1.3",
"description": "image-to-totp converts qr code images to totp codes",
"main": "build/index.js",
"files": [
"build",
"LICENSE",
"readme.md",
"assets/logo.png"
],
"scripts": {
"test": "jest --runInBand",
"test:coverage": "jest --runInBand --coverage",
"test:mutation": "stryker run",
"build": "rm -rf ./build && tsc",
"watch": "rm -rf ./build && tsc --watch",
"lint": "./node_modules/eslint/bin/eslint.js 'src/**/*.ts'",
"prettify": "prettier '**/*.ts' --write",
"lintFull": "npm run prettify && npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/thomaschaplin/image-to-totp"
},
"bugs": {
"url": "https://github.com/thomaschaplin/image-to-totp/issues"
},
"homepage": "https://github.com/thomaschaplin/image-to-totp#readme",
"keywords": [
"thomaschaplin",
"thomas",
"chaplin",
"authy",
"2FA",
"image-to-totp",
"two-fa",
"two-factor",
"totp",
"qr-code"
],
"author": "Thomas Chaplin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@stryker-mutator/core": "^4.4.1",
"@stryker-mutator/jest-runner": "^4.4.1",
"@stryker-mutator/typescript-checker": "^4.4.1",
"@thomaschaplin/eslint-config": "^1.0.1",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"husky": "^4.3.8",
"jest": "^27.3.1",
"kelonio": "^0.6.0",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"dependencies": {
"jimp": "^0.16.1",
"jsqr": "^1.4.0",
"otpauth": "^5.0.9"
},
"lint-staged": {
"*.js": [
"prettier --write",
"./node_modules/eslint/bin/eslint.js --fix"
],
"*.ts": [
"prettier --write",
"./node_modules/eslint/bin/eslint.js --fix"
],
"*.json": [
"prettier --write"
]
}
}