-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
{
"name": "page-loader",
"version": "0.1.2",
"description": "Description",
"main": "dist/index.js",
"bin": {
"page-loader": "dist/bin/page-loader.js"
},
"engines": {
"node": ">=8"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Haliont/backend-project-lvl3.git"
},
"author": "Konstantin Zemlyakov",
"license": "ISC",
"bugs": {
"url": "https://github.com/Haliont/backend-project-lvl3/issues"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/__tests__/__fixtures__/",
"/node_modules/"
]
},
"homepage": "https://github.com/Haliont/backend-project-lvl3#readme",
"dependencies": {
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
"axios": "^0.19.0",
"cheerio": "^1.0.0-rc.3",
"commander": "^3.0.1",
"debug": "^4.1.1",
"listr": "^0.14.3",
"lodash": "^4.17.15",
"source-map-support": "^0.5.13"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/preset-env": "^7.6.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"nock": "^11.3.4"
}
}