-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.03 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "favicon-thief",
"version": "2.1.0",
"description": "Find the best favicon for a given URL.",
"keywords": [
"favicon",
"thief",
"download",
"fetch",
"best",
"largest",
"image",
"file"
],
"license": "MIT",
"source": "src/index.ts",
"main": "build/index.js",
"types": "build/types.d.ts",
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/limesquid/favicon-thief.git"
},
"bugs": {
"url": "https://github.com/limesquid/favicon-thief/issues"
},
"homepage": "https://github.com/limesquid/favicon-thief#readme",
"files": [
"build/**",
"patches/**"
],
"np": {
"yarn": false
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "parcel build",
"clean": "rimraf build",
"prebuild": "patch-package && npm run clean",
"pretest": "patch-package",
"prerelease": "npm run prettier && npm run test && npm run build",
"prettier": "prettier --check src/",
"prettier:fix": "prettier --write src/",
"release": "np",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:top-500": "NODE_ENV=test node tests/top-500.js",
"test:watch": "jest --watch"
},
"targets": {
"main": {
"distDir": "./build",
"includeNodeModules": [
"cheerio",
"node-fetch-cjs"
]
}
},
"dependencies": {
"puppeteer": "^19.6.0",
"url-toolkit": "^2.2.5",
"validator": "^13.7.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"@types/jest": "^29.2.6",
"@types/node-fetch": "^2.6.2",
"@types/puppeteer": "^7.0.4",
"@types/validator": "^13.7.11",
"cheerio": "^1.0.0-rc.12",
"jest": "^29.4.0",
"node-fetch-cjs": "^3.2.10",
"np": "^7.6.3",
"parcel": "^2.8.3",
"patch-package": "^6.5.1",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
}
}