forked from adelgado/cheerio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1006 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "cheerio",
"version": "0.19.0",
"description": "Tiny, fast, and elegant implementation of core jQuery designed specifically for the server",
"author": "Matt Mueller <[email protected]> (mat.io)",
"license": "MIT",
"keywords": [
"htmlparser",
"jquery",
"selector",
"scraper",
"parser",
"html"
],
"repository": {
"type": "git",
"url": "git://github.com/cheeriojs/cheerio.git"
},
"main": "./index.js",
"files": [
"index.js",
"lib"
],
"engines": {
"node": ">= 0.6"
},
"dependencies": {
"css-select": "~1.2.0",
"entities": "~1.1.1",
"htmlparser2": "~3.8.1",
"dom-serializer": "~0.1.0",
"lodash": "^3.2.0"
},
"devDependencies": {
"benchmark": "~1.0.0",
"coveralls": "~2.10",
"expect.js": "~0.3.1",
"istanbul": "~0.2",
"jshint": "~2.5.1",
"mocha": "*",
"xyz": "~0.5.0"
},
"scripts": {
"test": "make test"
},
"optionalDependencies": {
"jsdom": "^7.0.2"
}
}