-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.69 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
{
"name": "ccscan",
"description": "Scan files for credit card numbers",
"version": "1.2.0",
"author": "Neo Financial Engineering <[email protected]>",
"license": "MIT",
"main": "build/index.js",
"bin": {
"ccscan": "bin/ccscan.js"
},
"repository": {
"type": "git",
"url": "https://github.com/neofinancial/ccscan"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start": "./bin/ccscan.js",
"watch": "ncc build src/app.ts -o build --minify --watch",
"build": "ncc build src/app.ts -o build --minify",
"clean": "rimraf build",
"test": "NODE_ENV=test jest",
"lint": "eslint \"**/*.{ts,js}\"",
"format": "prettier --write \"**/*.{ts,js,json,yaml,yml,md}\"",
"format:check": "prettier --debug-check \"**/*.{ts,js,json,yaml,yml,md}\"",
"prepublishOnly": "rimraf build && ncc build src/app.ts -o build --minify"
},
"files": [
"bin",
"build"
],
"lint-staged": {
"*.{ts,js}": [
"eslint --max-warnings 100",
"git add"
],
"*.{ts,js,json,yaml,yml,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/jest": "^24.0.20",
"@types/line-reader": "^0.0.28",
"@types/node": "^12.11.7",
"@types/yargs": "^13.0.3",
"@vercel/ncc": "^0.38.1",
"chalk": "^2.4.2",
"eslint": "^8.34.0",
"eslint-config-neo": "^0.11.1",
"fast-luhn": "^1.0.4",
"globby": "^10.0.1",
"husky": "^3.0.8",
"jest": "^29.7.0",
"line-reader": "^0.4.0",
"lint-staged": "^9.4.2",
"prettier": "^3.3.2",
"rimraf": "^3.0.0",
"strip-ansi": "^5.2.0",
"ts-jest": "^29.1.5",
"ts-node": "^8.4.1",
"typescript": "5.5.3",
"yargs": "^14.2.0"
}
}