-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "hexlet-level3-ya",
"version": "0.3.2",
"description": "Yakovlev Alexander, hexlet course level 3. CLI Page loader.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"eslint": "eslint --format codeframe",
"babel-node": "babel-node",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build"
},
"bin": {
"page-loader": "dist/bin/page-loader.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Badasper/project-lvl3-s382"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"testPathIgnorePatterns": [
"/__fixtures__/"
]
},
"homepage": "https://github.com/Badasper/project-lvl3-s382/issues",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jest": "*",
"jest": "*",
"jest-cli": "*",
"nock": "*"
},
"dependencies": {
"commander": "*",
"axios": "*",
"lodash": "*",
"cheerio": "*",
"debug": "*",
"listr": "*"
}
}