forked from nativefier/page-icon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1020 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
{
"name": "@owlbear-rodeo/page-icon",
"version": "0.6.0",
"engines": {
"node": ">= 10.0.0",
"npm": ">= 6.0.0"
},
"description": "Find the best icon for a web page",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "ts-mocha test/**/*.ts"
},
"author": "Goh Jia Hao, Mitchell McCaffrey",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5",
"file-type": "^16.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.6",
"chai": "^4.3.0",
"mocha": "^9.2.1",
"ts-mocha": "^9.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/owlbear-rodeo/page-icon.git"
},
"bugs": {
"url": "https://github.com/owlbear-rodeo/page-icon/issues"
},
"homepage": "https://github.com/owlbear-rodeo/page-icon#readme"
}