forked from popcorn-time/cheerio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 819 Bytes
/
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
{
"author": "Matt Mueller <[email protected]> (mattmueller.me)",
"name": "cheerio",
"description": "Tiny, fast, and elegant implementation of core jQuery designed specifically for the server",
"keywords": [
"htmlparser",
"jquery",
"selector",
"scraper",
"parser",
"html"
],
"version": "0.13.1",
"repository": {
"type": "git",
"url": "git://github.com/MatthewMueller/cheerio.git"
},
"main": "./index.js",
"engines": {
"node": ">= 0.6"
},
"dependencies": {
"htmlparser2": "~3.4.0",
"entities": "~0.5.0",
"CSSselect": "~0.4.0",
"lodash": "~2.4.1"
},
"devDependencies": {
"mocha": "*",
"expect.js": "~0.3.1",
"jshint": "~2.3.0",
"benchmark": "~1.0.0",
"jsdom": "~0.8.9"
},
"scripts": {
"test": "make test"
}
}