-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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
56
57
58
{
"name": "backend-project-lvl3",
"version": "0.0.1",
"description": "download pages with local paths",
"main": "dist/index.js",
"bin": {
"page-loader": "dist/bin/page-loader.js"
},
"scripts": {
"test": "jest",
"build": "NODE_ENV=production babel src --out-dir dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AntonLettuce/backend-project-lvl3.git"
},
"files": [
"dist"
],
"keywords": [
"page",
"download"
],
"author": "Anton Kapustin",
"license": "ISC",
"bugs": {
"url": "https://github.com/AntonLettuce/backend-project-lvl3/issues"
},
"jest": {
"testEnvironment": "node"
},
"homepage": "https://github.com/AntonLettuce/backend-project-lvl3#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.2.4",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"jest": "^25.2.4",
"nock": "^12.0.3"
},
"dependencies": {
"axios": "^0.19.2",
"axios-debug-log": "^0.7.0",
"cheerio": "^1.0.0-rc.3",
"commander": "^5.0.0",
"debug": "^4.1.1",
"listr": "^0.14.3",
"lodash": "^4.17.15"
}
}