-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.98 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "page-loader-async",
"version": "0.0.4",
"description": "Utility for download of files from the web.",
"main": "dist/index.js",
"bin": {
"page-loader-async": "dist/bin/page-loader.js"
},
"scripts": {
"babel-node": "babel-node",
"start": "babel-node -- src/bin/page-loader.js",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"lint": "eslint src/ __tests__/",
"lint-fix": "eslint --fix src/ __tests__/",
"lint-staged": "lint-staged",
"release": "standard-version",
"prepublish": "npm run build",
"test": "jest",
"coverage": "jest --coverage"
},
"jest": {
"testEnvironment": "node",
"snapshotSerializers": [
"jest-serializer-html"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rabinzon/page-loader-async.git"
},
"keywords": [
"js",
"node",
"nodejs",
"hexlet",
"cl",
"difftool"
],
"author": "Ildar Gilfanov",
"license": "ISC",
"bugs": {
"url": "https://github.com/Rabinzon/page-loader-async/issues"
},
"homepage": "https://github.com/Rabinzon/page-loader-async#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-jest": "^21.2.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.7.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.4.2",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"jest-serializer-html": "^4.0.1",
"lint-staged": "^4.2.3",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.2",
"standard-version": "^4.2.0"
},
"precommit.silent": true,
"pre-commit": "lint-staged",
"dependencies": {
"axios": "^0.17.1",
"cheerio": "^1.0.0-rc.2",
"commander": "^2.11.0",
"debug": "^3.1.0",
"file-type": "^7.4.0",
"is-svg": "^2.1.0",
"listr": "^0.13.0",
"mz": "^2.7.0",
"nock": "^9.1.4"
}
}