-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.37 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.37 KB
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
{
"name": "suq",
"main": "./index",
"version": "1.4.1",
"description": "A Scraping Utility for lazy people",
"scripts": {
"test": "tape tests/*.js | tap-diff"
},
"keywords": [
"htmlparser",
"jquery",
"selector",
"scraper",
"parser",
"html",
"microdata",
"microformats",
"opengraph",
"twittercard",
"meta"
],
"bin": {
"suq": "./bin/suq.js"
},
"files": [
"index.js",
"lib",
"bin",
"recipes"
],
"author": {
"name": "Matt McFarland",
"email": "contact@mattmcfarland.com"
},
"contributors": [
{
"name": "Matt McFarland",
"email": "contact@mattmcfarland.com"
},
{
"name": "Tom Sutton",
"url": "https://github.com/tomsutton1984"
},
{
"name": "Oscar Illescas",
"url": "https://github.com/oillescas"
},
{
"name": "Gary Moon",
"url": "https://github.com/garymoon"
}
],
"license": "MIT",
"dependencies": {
"cheerio": "^0.22.0",
"lodash": "^4.17.11",
"microdata-node": "^1.0.0",
"microformat-node": "^2.0.1",
"minimist": "^1.2.0",
"request": "^2.88.0",
"traverse": "^0.6.6",
"xss": "^1.0.6"
},
"repository": {
"type": "git",
"url": "git://github.com/MattMcFarland/SUq.git"
},
"devDependencies": {
"chalk": "^2.4.2",
"tap-diff": "^0.1.1",
"tape": "^4.10.2"
}
}