-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "@hexlet/code",
"version": "1.0.0",
"description": "web page downloader",
"main": "index.js",
"scripts": {
"test": "npx jest"
},
"bin": {
"page-loader": "bin/page-loader.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CENTneRMOB/backend-project-lvl3.git"
},
"author": "Boris.P",
"license": "ISC",
"bugs": {
"url": "https://github.com/CENTneRMOB/backend-project-lvl3/issues"
},
"homepage": "https://github.com/CENTneRMOB/backend-project-lvl3#readme",
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"nock": "^13.0.10"
},
"dependencies": {
"axios": "^0.21.1",
"axios-debug-log": "^0.8.2",
"cheerio": "^1.0.0-rc.5",
"commander": "^7.1.0",
"debug": "^4.3.1",
"listr": "^0.14.3",
"lodash": "^4.17.21"
},
"type": "module",
"jest": {
"testEnvironment": "node",
"transform": {}
}
}