Update package.json

This commit is contained in:
Aleksandr Statciuk 2021-10-06 00:36:58 +03:00
parent 9a752f0b0a
commit 189f3e4779
1 changed files with 6 additions and 2 deletions

View File

@ -5,7 +5,7 @@
"main": "src/index.js",
"preferGlobal": true,
"bin": {
"epg-grabber": "src/index.js"
"epg-grabber": "bin/epg-grabber.js"
},
"scripts": {
"lint": "npx eslint ./src/**/*.js",
@ -30,6 +30,7 @@
"dependencies": {
"axios": "^0.21.1",
"axios-cookiejar-support": "^1.0.1",
"axios-mock-adapter": "^1.20.0",
"commander": "^7.1.0",
"dayjs": "^1.10.4",
"glob": "^7.1.6",
@ -43,6 +44,9 @@
"babel-jest": "^26.6.3",
"eslint": "^7.22.0",
"jest": "^26.6.3",
"jest-mock-axios": "^4.3.0"
"jest-mock-axios": "^4.4.1"
},
"jest": {
"testEnvironment": "node"
}
}