-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.51 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "htmlcarve",
"version": "0.1.1",
"description": "Extract essential meta-informations from any web page, fast and dead simple.",
"keywords": [
"html",
"scraping",
"open graph protocol",
"ogp",
"twitter cards"
],
"main": "./lib/htmlcarve",
"bin": {
"htmlcarve": "./bin/htmlcarve"
},
"author": {
"name": "Maximilian Stroh",
"email": "Hisako1337@gmail.com",
"web": "http://blog.plague-dev.de"
},
"dependencies": {
"coffee-script": "~1.6.3",
"cheerio": "~0.12.3",
"iconv-lite": "~0.2.11",
"chardet": "0.0.8",
"request": "~2.27.0"
},
"engines": {
"node": "*"
},
"maintainers": [
{
"name": "Maximilian Stroh",
"email": "Hisako1337@gmail.com",
"web": "http://blog.plague-dev.de"
}
],
"contributors": [
{
"name": "Maximilian Stroh",
"email": "Hisako1337@gmail.com",
"web": "http://blog.plague-dev.de"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Anonyfox/node-htmlcarve.git"
},
"bugs": {
"url": "https://github.com/Anonyfox/node-htmlcarve/issues"
},
"licenses": [
{
"name": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"devDependencies": {
"mocha": "~1.13.0",
"chai": "~1.8.1",
"jitter": "~1.2.1"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"tester": "./node_modules/mocha/bin/mocha --watch --growl",
"compiler": "./node_modules/jitter/bin/jitter src lib"
}
}