-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.75 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
60
61
62
63
64
65
{
"name": "project-lvl3-s71",
"version": "0.0.4",
"description": "Downloads the page from the network and puts it in the current folder.",
"bin": {
"page-loader": "./dist/bin/page-loader.js"
},
"scripts": {
"babel-node": "babel-node",
"eslint": "eslint",
"test": "DEBUG=\"page-loader:*\" jest",
"test-watch": "DEBUG=\"page-loader:*\" jest --watch",
"build": "babel src --out-dir dist",
"prepublish": "npm run build"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/fixtures",
"/__tests__/helpers"
],
"testEnvironment": "node",
"collectCoverage": true,
"coverageDirectory": "tmp",
"coverageReporters": [
"lcov"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/antonazgarovich/project-lvl3-s71.git"
},
"author": "Anton Masallimov",
"license": "ISC",
"bugs": {
"url": "https://github.com/antonazgarovich/project-lvl3-s71/issues"
},
"homepage": "https://github.com/antonazgarovich/project-lvl3-s71#readme",
"dependencies": {
"axios": "^0.16.1",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-preset-stage-0": "^6.22.0",
"cheerio": "^0.22.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"debug": "^2.6.4",
"flow-bin": "^0.38.0",
"flow-typed": "^2.0.0",
"listr": "^0.11.0",
"mz": "^2.6.0"
},
"devDependencies": {
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^18.1.0",
"nock": "^9.0.13"
}
}