package.json
{
"name": "igor-i-page-loader",
"version": "0.5.0",
"description": "This is a Level 3 project in Hexlet.io. A command line utility that downloads a page from the network and puts it in the specified folder (by default to the program's start directory).",
"main": "dist/index.js",
"bin": {
"page-loader": "dist/bin/page-loader.js"
},
"files": [
"dist"
],
"scripts": {
"babel-node": "babel-node",
"eslint": "eslint",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igor-i/project-lvl3-s170.git"
},
"author": "Igor Inkovskiy",
"license": "ISC",
"bugs": {
"url": "https://github.com/igor-i/project-lvl3-s170/issues"
},
"homepage": "https://github.com/igor-i/project-lvl3-s170#readme",
"dependencies": {
"axios": "^0.17.1",
"cheerio": "^1.0.0-rc.2",
"commander": "^2.13.0",
"debug": "^3.1.0",
"errno": "^0.1.6",
"listr": "^0.13.0",
"lodash": "^4.17.4",
"mz": "^2.7.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.6.2",
"jest": "^22.0.6",
"jest-cli": "^22.0.6",
"nock": "^9.1.6"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"lcov"
],
"testEnvironment": "node",
"verbose": true,
"modulePathIgnorePatterns": [
"<rootDir>/__tests__/__fixtures__"
]
}
}