-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.53 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
{
"name": "logo-scrape",
"version": "1.1.0",
"description": "Scrapes/Crawls the logo from a provided url(s)/website for your Node.js applications.",
"author": "Fritz Hoste <hoste.fritz@gmail.com>",
"main": "dist/index.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/FritzH321/logo-scrape.git"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"got": "^9.6.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.11",
"@types/got": "^9.4.1",
"@types/node": "^11.10.4",
"auto-changelog": "^1.11.0",
"prettier": "1.16.4",
"release-it": "^10.3.1",
"ts-node": "^8.0.2",
"tslint": "^5.13.1",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.3333"
},
"scripts": {
"start-example": "npm run build && ts-node ./examples/test.ts",
"prepare": "npm run lint && npm run build && npm run doc && npm run before-stage",
"lint": "tslint -p .",
"lint-fix": "tslint -p . --fix",
"build": "rm -rf ./dist && tsc",
"cleandoc": "rm -rf docs/",
"doc": "npm run cleandoc && typedoc lib/",
"release": "release-it",
"before-stage": "npx auto-changelog"
},
"keywords": [
"logo",
"scrape",
"company",
"website",
"image",
"crawl",
"fetch",
"opengraph",
"icon",
"favicon"
],
"license": "MIT"
}