-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.7 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
{
"name": "@mx7/otp",
"version": "1.2.1",
"description": "A simple OTP generator!",
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"files": [
"lib/index.d.ts",
"lib/index.js",
"lib/index.mjs"
],
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"build": "tsup",
"prepublishOnly": "npm run build",
"format": "prettier --write ."
},
"engines": {
"node": ">=14"
},
"keywords": [
"mx7",
"otp",
"otp-generator"
],
"author": "Mahabub <mahabubx7@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"nyc": "^15.1.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"git add **/*.ts"
],
"**/*.(ts,json,md)": [
"prettier --write .",
"git add ."
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "github",
"url": "https://github.com/mahabubx7/otp"
},
"bugs": {
"url": "https://github.com/mahabubx7/otp/issues"
}
}