-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 749 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 749 Bytes
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
{
"name": "jq-html-parser",
"version": "0.3.0",
"description": "A jQuery powered parser for extracting text (strings) from HTML documents",
"main": "lib/index.js",
"scripts": {
"test": "mocha test/specs"
},
"repository": {
"type": "git",
"url": "https://github.com/jpstevens/jq-html-parser.git"
},
"keywords": [
"jquery",
"html",
"parser",
"parse"
],
"author": "Jack Stevens <jack@applyr.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jpstevens/jq-html-parser/issues"
},
"homepage": "https://github.com/jpstevens/jq-html-parser",
"dependencies": {
"chalk": "^1.0.0",
"jqdom": "0.0.5"
},
"devDependencies": {
"chai": "^2.1.2",
"mocha": "^2.2.1"
}
}