forked from itgalaxy/favicons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2 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
{
"name": "favicons",
"version": "7.0.0-beta.3",
"description": "Favicon generator for Node.js",
"type": "module",
"main": "dist/index.js",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/itgalaxy/favicons.git"
},
"scripts": {
"fmt": "prettier --write .",
"fmt-check": "prettier --check .",
"lint": "eslint . --ignore-path .gitignore",
"fix": "npm run lint -- --fix && npm run fmt",
"pretest": "npm run lint && npm run fmt-check",
"test-only": "npm run build && jest",
"test": "npm run test-only",
"clean": "rimraf dist/",
"build": "tsc",
"prepare": "npm run pretest && npm run build"
},
"keywords": [
"favicon",
"ico",
"generator",
"node",
"realfavicongenerator"
],
"author": "Hayden Bleasel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/itgalaxy/favicons/issues"
},
"homepage": "https://github.com/itgalaxy/favicons",
"engines": {
"node": ">=10.13.0"
},
"dependencies": {
"escape-html": "^1.0.3",
"sharp": "^0.29.3",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/sharp": "^0.29.5",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-prettier": "^4.0.0",
"icojs": "^0.16.1",
"jest": "^27.4.7",
"jest-image-snapshot": "^4.5.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"jest": {
"testTimeout": 180000,
"setupFilesAfterEnv": [
"<rootDir>/test/setup.js"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"src/**/*.js"
],
"coverageDirectory": "<rootDir>/coverage",
"coverageReporters": [
"text-summary",
"html"
]
}
}