-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "panify",
"version": "2.0.4",
"description": "Validated credit card numbers generator and validator.",
"main": "dist/index.js",
"browser": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"panify": "dist/panify.mjs"
},
"scripts": {
"dev": "tsup src/index.ts --watch --format cjs,esm --dts",
"build": "tsup src/index.ts --format cjs,esm --dts",
"build:cli": "tsup",
"prepublishOnly": "npm run build",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amm834/panify.git"
},
"keywords": [
"mod10",
"luhn",
"pan",
"panify",
"generator",
"credit card generator"
],
"author": "Aung Myat Moe",
"license": "MIT",
"bugs": {
"url": "https://github.com/amm834/panify/issues"
},
"homepage": "https://github.com/amm834/panify#readme",
"devDependencies": {
"@types/node": "^18.11.18",
"@types/prompts": "^2.4.2",
"add": "^2.0.6",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vitest": "^0.27.3"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@amm834/luhn": "^2.2.0",
"prompts": "^2.4.2"
}
}