forked from timrogers/formanator
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
{
"name": "atpc",
"version": "0.0.0-development",
"description": "Affirm Trivial Payroll Checker is an app that processes data from different sources to try to check issues with Affirm Spain payrolls",
"homepage": "https://github.com/friscoMad/atpc",
"type": "module",
"bin": "dist/index.js",
"scripts": {
"build": "npx tsc -p tsconfig.json",
"prepublish": "npm run build",
"prepack": "node script/generate-version-file.cjs > dist/version.js",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"semantic-release": "semantic-release",
"dev": "NODE_TLS_REJECT_UNAUTHORIZED='0' npx tsx src/index.ts"
},
"files": [
"dist"
],
"keywords": [],
"author": "Ramiro Aparicio <[email protected]>",
"contributors": [
"Tim Rogers <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@fast-csv/parse": "^4.3.6",
"@public-js/exchange-rates": "^0.0.2",
"@types/flat-cache": "^2.0.2",
"axios": "^1.4.0",
"chalk": "^5.3.0",
"cli-table": "^0.3.11",
"commander": "^11.0.0",
"decimal.js": "^10.4.3",
"flat-cache": "^4.0.0",
"pdfreader": "^3.0.2",
"prompt-sync": "^4.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/friscoMad/atpc.git"
},
"release": {
"branches": [
"main"
]
},
"devDependencies": {
"@types/cli-table": "^0.3.1",
"@types/node": "^20.10.5",
"@types/prompt-sync": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"semantic-release": "^22.0.5",
"tsx": "^4.7.0",
"typescript": "^5.1.6"
}
}