-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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-page-loader",
"version": "0.0.3",
"description": "",
"main": "dist/index.js",
"bin": {
"page-loader": "dist/bin/page-loader.js"
},
"scripts": {
"test": "jest --coverage",
"babel-node": "babel-node",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arkadiy93/project-lvl3-s444.git"
},
"author": "Arkadiy Stepanov",
"license": "ISC",
"bugs": {
"url": "https://github.com/arkadiy93/project-lvl3-s444/issues"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"homepage": "https://github.com/arkadiy93/project-lvl3-s444#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.2",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"jest": "^24.6.0"
},
"dependencies": {
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"axios": "^0.18.0",
"cheerio": "^1.0.0-rc.2",
"commander": "^2.19.0",
"debug": "^4.1.1",
"listr": "^0.14.3",
"lodash": "^4.17.11",
"nock": "^10.0.6",
"rimraf": "^2.6.3"
}
}