-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "@eifory/backend-project-lvl3",
"version": "1.0.0",
"description": "Download and save html page",
"main": "index.js",
"bin": {
"page-loader": "bin/page-loader.js"
},
"engines": {
"node": ">=14"
},
"scripts": {
"test": "npx -n --experimental-vm-modules jest"
},
"type": "module",
"jest": {
"testEnvironment": "node",
"transform": {}
},
"repository": {
"type": "git",
"url": "git+https://github.com/eifory/backend-project-lvl3.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eifory/backend-project-lvl3/issues"
},
"homepage": "https://github.com/eifory/backend-project-lvl3#readme",
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"jest": "^26.5.3",
"nock": "^13.0.4"
},
"dependencies": {
"axios": "^0.20.0",
"axios-debug-log": "^0.8.0",
"cheerio": "^1.0.0-rc.3",
"commander": "^6.1.0",
"debug": "^4.2.0",
"listr": "^0.14.3"
}
}