-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
83 lines (83 loc) · 2.42 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
{
"name": "parse-favicon",
"version": "7.0.1",
"description": "Parse HTML to get icon information",
"keywords": [
"favicon",
"icon",
"shortcut",
"apple-touch-icon",
"manifest",
"fluid-icon",
"mask-icon",
"msapplication"
],
"files": [
"lib",
"src"
],
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=18.17.0"
},
"repository": "[email protected]:BlackGlory/parse-favicon.git",
"author": "BlackGlory <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "ts-patch install -s",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --quiet src __tests__",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --runInBand --no-cache --config jest.config.cjs",
"test:debug": "cross-env NODE_OPTIONS=--experimental-vm-modules node --inspect-brk jest --runInBand --config jest.config.cjs",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --config jest.config.cjs",
"prepublishOnly": "run-s prepare clean build",
"clean": "rimraf lib",
"build": "tsc --project tsconfig.build.json",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "run-s prepare clean lint build test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@blackglory/jest-resolver": "^0.3.0",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/jest": "^29.4.0",
"@types/urijs": "^1.19.19",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"cross-env": "^7.0.3",
"eslint": "^8.33.0",
"extra-tags": "^0.4.2",
"husky": "^4.3.8",
"jest": "^29.4.2",
"jest-resolve": "^29.4.2",
"npm-run-all": "^4.1.5",
"return-style": "^3.0.1",
"rimraf": "^5.0.5",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.5",
"ts-patch": "^3.1.1",
"typescript": "5.3.3",
"typescript-transform-paths": "^3.4.6"
},
"dependencies": {
"@blackglory/errors": "^3.0.0",
"@blackglory/prelude": "^0.3.1",
"@blackglory/query": "^0.5.6",
"extra-dom": "^0.6.1",
"extra-promise": "^6.0.3",
"extra-utils": "^5.0.1",
"file-type": "^18.2.0",
"image-size": "^1.0.2",
"is-svg": "^5.0.0",
"iterable-operator": "^4.0.3",
"rxjs": "^7.8.0",
"urijs": "^1.19.11"
}
}