-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
73 lines (73 loc) · 1.71 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
{
"private": true,
"name": "goose-parser",
"version": "0.6.1",
"main": "lib/Parser.js",
"description": "Multi environment web page parser",
"author": {
"name": "Andrew Reddikh",
"email": "andrew@reddikh.com"
},
"keywords": [
"phantomjs",
"chrome",
"chromium",
"jsdom",
"browser",
"parser",
"crawler",
"crawling",
"spider",
"scraper",
"scraping",
"site",
"page",
"dom",
"javascript"
],
"homepage": "http://redcode.im",
"license": "MIT",
"contributors": [
{
"name": "Andrew Reddikh",
"email": "andrew@reddikh.com"
},
{
"name": "Andrew Balakirev",
"email": "balakirev.andrey@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/redco/goose-parser.git"
},
"bugs": {
"url": "https://github.com/redco/goose-parser/issues"
},
"scripts": {
"test": "jest test --no-cache --runInBand --detectOpenHandles --maxConcurrency=1",
"build": "node build.js",
"coverage": "jest --no-cache --runInBand --maxConcurrency=1 --coverage && rm -rf ./coverage",
"codecov": "jest --no-cache --runInBand --maxConcurrency=1 --coverage && codecov && rm -rf ./coverage"
},
"dependencies": {
"debug": "^3.1.0",
"html-entities": "^1.2.0",
"lodash.clone": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.0",
"lodash.pick": "^4.4.0",
"lodash.pluck": "^3.1.2",
"moment": "^2.10.6"
},
"devDependencies": {
"codecov": "^3.1.0",
"goose-abstract-environment": "^1.1.0",
"goose-chrome-environment": "^1.1.4",
"goose-paginator": "^1.0.2",
"jest": "^24.1.0",
"rimraf": "^2.6.2",
"webpack": "^1.12.2"
},
"directories": {}
}