-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.38 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
59
{
"name": "page-load",
"version": "1.0.8",
"description": "Hexlet project",
"main": "dist/index.js",
"scripts": {
"babel-node": "babel-node",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublish": "npm run build",
"eslint": "eslint",
"test": "jest"
},
"bin": {
"page-loader": "dist/bin/pageLoader.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeresvetS/project-lvl3-s71.git"
},
"author": "Peresvet",
"license": "ISC",
"bugs": {
"url": "https://github.com/PeresvetS/project-lvl3-s71/issues"
},
"homepage": "https://github.com/PeresvetS/project-lvl3-s71#readme",
"dependencies": {
"axios": "*",
"babel-plugin-transform-runtime": "*",
"babel-runtime": "^6.23.0",
"cheerio": "*",
"colors": "*",
"commander": "^2.9.0",
"debug": "*",
"fs-extra": "*",
"listr": "*",
"mz": "*",
"nock": "*",
"webpack": "^2.4.1"
},
"devDependencies": {
"babel-cli": "*",
"babel-core": "*",
"babel-preset-env": "*",
"babel-preset-stage-0": "*",
"eslint": "*",
"eslint-plugin-import": "*",
"eslint-config-airbnb-base": "*",
"babel-eslint": "*",
"eslint-plugin-jest": "^19.0.1",
"jest": "*"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "cover",
"coverageReporters": [
"lcov"
]
}
}