-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
90 lines (90 loc) · 2.31 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "jason-the-miner",
"version": "1.1.1",
"description": "Harvesting data at the <html> mine.",
"author": "mawrkus <web@sparring-partner.be>",
"license": "MIT",
"homepage": "https://github.com/mawrkus/jason-the-miner",
"bugs": {
"url": "https://github.com/mawrkus/jason-the-miner/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/mawrkus/jason-the-miner.git"
},
"keywords": [
"scrape",
"scraper",
"scraping",
"crawl",
"crawler",
"crawling",
"web",
"html",
"cheerio",
"axios"
],
"main": "es/JasonTheMiner.js",
"bin": "bin/jason-the-miner.js",
"engines": {
"node": ">= 8.9"
},
"files": [
"bin",
"es",
"lib",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"lint": "eslint es/ bin/ demos/",
"pretest": "npm run lint",
"test": "jest es/",
"tdd": "jest es/ --watch --verbose",
"prerelease": "npm run test",
"release": "npm version -m \"New version: %s\"",
"postrelease": "npm run push && npm publish",
"push": "git push origin master && git push origin --tags",
"demos": "npm run demos:clean && node demos/index.js",
"demos:clean": "clear && rm -rf demos/data/out/* && touch demos/data/out/.gitkeep && mkdir demos/data/out/downloads && touch demos/data/out/downloads/.gitkeep",
"demos:debug": "DEBUG=jason:* npm run demos"
},
"dependencies": {
"axios": "^0.19.0",
"bluebird": "^3.5.3",
"cheerio": "^1.0.0-rc.2",
"commander": "^2.19.0",
"content-disposition": "^0.5.3",
"csv-parse": "^4.3.1",
"csv-stringify": "^5.3.0",
"debug": "^4.1.1",
"lodash.get": "^4.4.2",
"lodash.mergewith": "^4.6.1",
"make-dir": "^2.0.0",
"mime": "^2.4.0",
"moment": "^2.24.0",
"nodemailer": "^5.1.1",
"ora": "^3.0.0",
"pad-left": "^2.1.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.2.2",
"jest": "^24.1.0",
"mustache": "^3.0.1",
"puppeteer": "^1.20.0"
},
"jest": {
"clearMocks": true,
"restoreMocks": true,
"verbose": true,
"testPathIgnorePatterns": [
"<rootDir>/lib/",
"<rootDir>/node_modules/"
],
"testRegex": "/__tests__/.*\\.spec\\.js$"
}
}