-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 967 Bytes
/
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
{
"name": "citi_to_expense_manager_csv_converter",
"version": "1.0.0",
"description": "Convert CSV files from Citi to Expense Manager format",
"repository": {
"type": "git",
"url": "https://github.com/Valdermeyder/CityToExpenseManager.git"
},
"main": "main.js",
"scripts": {
"start": "node main.js",
"lint": "eslint .",
"test": "jest",
"e2e": "testcafe chrome ./e2e/*.js --app \"npm start\"",
"prepare": "husky install"
},
"keywords": [
"csv",
"expense",
"converter"
],
"author": "Volodymyr Huzar",
"email": "vguzar@i.ua",
"license": "ISC",
"dependencies": {
"csv-parse": "^5.3.3",
"express": "^4.18.2",
"express-fileupload": "^1.1.6",
"moment": "^2.29.4",
"stream-transform": "^3.2.1"
},
"devDependencies": {
"eslint": "^8.34.0",
"eslint-plugin-jest": "^27.2.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lodash": "^4.17.21",
"testcafe": "^2.2.0"
}
}