-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.76 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "csv_procedure",
"version": "2.5.3",
"files": [
"src/",
"public/",
"README.md",
"LICENSE",
"bin/",
"!src/**/*.test.js",
"!**/__tests__/"
],
"description": "",
"main": "src/app.js",
"scripts": {
"start": "node server.js",
"ci": "node scripts/ci-runner.js",
"dev": "nodemon server.js",
"lint": "npx eslint src/ --ext .js",
"setup": "node scripts/setup.js",
"test": "npm run setup && jest --coverage",
"test:ci": "npm run setup && jest --coverage --ci",
"prepare": "husky install",
"generate:fixtures": "node src/utils/generateFixtures.js",
"upload:coverage": "codecov -f coverage/lcov.info --disable=gcov",
"release": "npm run ci && npm version patch -m \"Release v%s\" && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevilsDev/csv_procedure.git"
},
"keywords": [
"csv",
"excel",
"etl"
],
"author": "Ali Kahwaji",
"license": "MIT",
"bugs": {
"url": "https://github.com/DevilsDev/csv_procedure/issues"
},
"homepage": "https://github.com/DevilsDev/csv_procedure#readme",
"bin": {
"thresh": "./bin/clinisync.js",
"clinisync": "./bin/clinisync.js"
},
"dependencies": {
"chalk": "^5.4.1",
"detect-port": "^2.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"moment": "^2.30.1",
"multer": "^1.4.5-lts.2",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@resvg/resvg-js": "^2.6.2",
"axios": "^1.8.4",
"codecov": "^3.1.0",
"cross-env": "^7.0.3",
"eslint": "^9.23.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.1.0",
"util": "^0.12.5"
}
}