-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.2 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.2 KB
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
{
"name": "fitbit-otp-auth-app",
"version": "1.0.1",
"author": "Andreas Remigius Schmidt",
"private": true,
"license": "GPL-3.0",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@cspell/dict-de-ch": "^1.1.0",
"@fitbit/sdk": "~6.1.0",
"@fitbit/sdk-cli": "^1.7.3",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"base32-encode": "^2.0.0",
"conventional-changelog-cli": "^2.2.2",
"cspell-cli": "^6.28.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"fitbit-sdk-types": "^8.0.3",
"husky": "^8.0.3",
"jest": "^29.4.2",
"jest-junit": "^15.0.0",
"license-checker-rseidelsohn": "^4.1.1",
"lint-staged": "^13.1.1",
"markdownlint": "^0.27.0",
"markdownlint-cli2": "^0.6.0",
"prettier": "2.8.3",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"stylelint-no-indistinguishable-colors": "^1.3.2",
"ts-jest": "^29.0.5"
},
"fitbit": {
"appUUID": "8e1ff1dc-5118-4f53-bad5-fccfef64058c",
"appType": "app",
"appDisplayName": "OTP Auth",
"iconFile": "resources/icon.png",
"wipeColor": "#ffd502",
"requestedPermissions": [],
"buildTargets": [
"atlas",
"vulcan"
],
"i18n": {},
"defaultLanguage": "en-US"
},
"scripts": {
"build": "./bin/generate_licenses_data.sh && fitbit-build",
"debug": "fitbit",
"test": "jest",
"test:ci": "npm run test -- --ci --reporters=default --reporters=jest-junit",
"check-licenses": "license-checker-rseidelsohn --production --onlyAllow \"MIT;ISC;BSD-3-Clause;Apache-2.0;0BSD\" --excludePrivatePackages",
"prepare": "husky install",
"generate-qr-tags": "node test/qr_codes/generateQrCodes.mjs",
"version": "conventional-changelog --preset conventionalcommits --infile CHANGELOG.md --same-file --append && prettier --write CHANGELOG.md && git add CHANGELOG.md"
},
"dependencies": {
"@nuintun/qrcode": "3.3.0",
"base32-decode": "1.0.0",
"crypto-js": "4.1.1"
}
}