-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
{
"name": "page-loader",
"version": "1.0.0",
"bin": {
"page-loader": "bin/page-loader.js"
},
"description": "utility that downloads a page from the Internet",
"main": "index.js",
"type": "module",
"scripts": {
"test": "npx -n --experimental-vm-modules jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eKulshan/backend-project-lvl3.git"
},
"keywords": [
"page-loader"
],
"author": "KulshanEI",
"license": "MIT",
"bugs": {
"url": "https://github.com/eKulshan/backend-project-lvl3/issues"
},
"homepage": "https://github.com/eKulshan/backend-project-lvl3#readme",
"dependencies": {
"axios": "^0.19.2",
"axios-debug-log": "^0.8.0",
"cheerio": "^1.0.0-rc.3",
"commander": "^5.1.0",
"debug": "^4.1.1",
"listr": "^0.14.3",
"lodash": "^4.17.20"
},
"devDependencies": {
"eslint": "7.2.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"nock": "^13.0.3"
}
}