-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.24 KB
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
{
"name": "csv_to_db",
"version": "1.0.0",
"description": "A Node.js application that converts CSV files into database tables",
"main": "src/app.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix"
},
"keywords": [
"csv",
"database",
"sql",
"converter",
"nodejs"
],
"author": "devOnlyPurple",
"license": "MIT",
"type": "commonjs",
"dependencies": {
"csv-parser": "^3.2.0",
"express": "^5.1.0",
"fs-extra": "^11.3.2",
"multer": "^2.0.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"eslint": "^8.50.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.js"
],
"testTimeout": 10000,
"forceExit": true,
"detectOpenHandles": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/app.js"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
]
}
}