-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 4.06 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@garvae/web-assets-generator",
"description": "Generate all HTML meta tags, favicon bundle and other assets for your web project. Simple. With just one tool.",
"author": "Garvae",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/garvae/web-assets-generator.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/garvae/web-assets-generator/issues"
},
"homepage": "https://github.com/garvae/web-assets-generator#web-assets-generator",
"version": "1.1.7",
"scripts": {
"build-and-run-locally-node": "yarn compile && yarn run:lib",
"clear:jest-cache": "jest --clearCache",
"compile-and-llink": "tsc && npm unlink -g @garvae/web-assets-generator && npm link",
"precompile": "node scripts/remove-folder.js bin",
"compile": "tsc",
"find-deadcode": "npx --yes unimported --no-cache",
"install:husky": "[ ! -d \"/node_modules/is-ci/\" ] || is-ci || [ ! -d \"/node_modules/husky/\" ] || husky install",
"lint": "eslint lib/**",
"postinstall": "yarn install:husky",
"prepare": "yarn install:husky",
"pretest": "node config/jest/utils/clear-cache.js",
"publish": "npm publish",
"run:lib": "cross-env DEV=true node bin/index.js",
"test": "cross-env NODE_ENV=test jest",
"version:patch": "npm version patch"
},
"keywords": [
"SEO",
"assets",
"automatically",
"bundle",
"favicon",
"generator",
"html",
"meta",
"tags",
"web"
],
"bin": "bin/index.js",
"dependencies": {
"cli-real-favicon": "^0.0.8"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/parser": "^7.21.2",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@babel/runtime": "^7.21.0",
"@getify/eslint-plugin-proper-arrows": "^11.0.3",
"@getify/eslint-plugin-proper-ternary": "^3.1.1",
"@html-eslint/eslint-plugin": "^0.19.1",
"@html-eslint/parser": "^0.19.1",
"@types/jest": "^29.4.0",
"@types/node": "^20.5.2",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"babel-jest": "^29.5.0",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-array-func": "^3.1.8",
"eslint-plugin-destructuring": "^2.2.1",
"eslint-plugin-destructuring-newline": "^0.1.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsdoc": "^46.5.0",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-markdownlint": "^0.5.0",
"eslint-plugin-modules-newlines": "^0.0.7",
"eslint-plugin-newline-destructuring": "^1.2.1",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prefer-type-alias": "^0.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-write-good-comments": "^0.2.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-html-reporter": "^3.10.1",
"jest-transform-stub": "^2.0.0",
"jest-transformer-svg": "^2.0.0",
"lint-staged": "^12.3.7",
"pre-commit": "^1.2.2",
"prepend": "^1.0.2",
"prettier": "^3.0.2",
"svg-jest": "^1.0.1",
"ts-jest": "^29.0.5",
"typescript": "^4.7.4"
},
"lint-staged": {
"lib/**/*.{ts,tsx}": [
"eslint --fix"
],
"lib/**/*.{json,md,html}": [
"prettier --write"
]
}
}