-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
47
48
49
50
51
52
53
54
55
{
"name": "@hexlet/code",
"version": "2.0.1",
"description": "Download the webpage by url",
"keywords": [
"hexlet",
"page-loader",
"nodejs"
],
"main": "src/index.js",
"bin": {
"page-loader": "src/bin/page-loader.js"
},
"scripts": {
"test": "npx jest --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PavelDeuce/page-loader.git"
},
"author": "Pavel Deryugin (PavelDeuce)",
"license": "ISC",
"bugs": {
"url": "https://github.com/PavelDeuce/page-loader/issues"
},
"jest": {
"testEnvironment": "node"
},
"type": "module",
"homepage": "https://github.com/PavelDeuce/page-loader#readme",
"dependencies": {
"axios": "^0.21.1",
"axios-debug-log": "^0.8.2",
"cheerio": "^1.0.0-rc.10",
"commander": "^7.2.0",
"debug": "^4.3.1",
"listr": "^0.14.3",
"lodash": "^4.17.20",
"os": "^0.1.1"
},
"devDependencies": {
"@jest/globals": "^26.6.2",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"jest-cli": "^26.6.3",
"nock": "^13.0.11",
"prettier": "^2.2.1"
}
}