-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
{
"name": "html-select-to-json",
"version": "2.1.0",
"description": "Convert html stream to json based on a schema of selectors",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "standard && tape test/*.js"
},
"bin": {
"html-select-to-json": "bin/cmd.js"
},
"author": {
"name": "Tim Hudson",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"concat-stream": "^1.4.8",
"duplexify": "^3.3.0",
"end-of-stream": "^1.1.0",
"html-select": "^2.3.24",
"html-tokenize": "^1.2.5",
"json-compose-stream": "^1.0.0",
"omit-keys": "^0.1.0",
"once": "^1.3.1",
"pumpify": "^1.3.3",
"request": "^2.55.0",
"through2": "^0.6.5"
},
"devDependencies": {
"standard": "^3.7.2",
"tape": "^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/timhudson/html-select-to-json.git"
},
"keywords": [
"html",
"streams",
"parser"
],
"bugs": {
"url": "https://github.com/timhudson/html-select-to-json/issues"
},
"homepage": "https://github.com/timhudson/html-select-to-json"
}