-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.59 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
{
"name": "@ackee/otpass",
"version": "0.2.3",
"description": "Easy to use 2FA module supporting both Timed one-time passwords (RFC 6238) and Hmac one-time-passwords (RFC 4226). Also contains helper functions and types so their use is as easy as possible.",
"main": "./index.js",
"engines": {
"node": ">=15.0.0"
},
"scripts": {
"build": "tsc",
"start": "cross-env NODE_PATH=dist node dist/index.js",
"start-lr": "tsc-watch --onSuccess \"npm run start\"",
"test": "./node_modules/.bin/mocha --require ts-node/register test/*.ts",
"cs:eslint:check": "eslint --ignore-path .gitignore '**/*.ts' -f codeframe",
"cs:eslint:fix": "npm run cs:eslint:check -- --fix",
"lint": "npm run cs:eslint:check",
"prepare": "husky install",
"cs:prettier:check": "prettier --ignore-path .gitignore --check '**/*.{ts,js,json,md}'",
"cs:prettier:fix": "npm run cs:prettier:check -- --write '**/*.{ts,js,json,md}'"
},
"author": "Ladislav Louka <[email protected]>",
"contributors": [
"Ladislav Louka <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/AckeeCZ/otpass"
},
"license": "MIT",
"devDependencies": {
"@ackee/styleguide-backend-config": "^0.5.0",
"@microsoft/tsdoc": "^0.15.0",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.7",
"@types/node": "^20.9.0",
"chai": "^4.5.0",
"cross-env": "^7.0.3",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"peerDependencies": {
"keyv": "4.5.0"
}
}