-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "hexo-filter-probe-image-size",
"version": "0.4.3",
"description": "Probe and set image sizes in hexo web pages",
"keywords": [
"hexo",
"hexo-plugin",
"image",
"width",
"height"
],
"bugs": "https://github.com/PaperStrike/hexo-filter-probe-image-size/issues",
"license": "MIT",
"author": "PaperStrike",
"files": [
"src",
"*.config.*",
".eslintrc.*"
],
"main": "src/index.js",
"repository": "github:PaperStrike/hexo-filter-probe-image-size",
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"chalk": "^4.1.1",
"probe-image-size": "^7.2.1",
"string-replace-async": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.5",
"@types/hexo": "^3.8.5",
"@types/probe-image-size": "^7.0.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4"
},
"engines": {
"hexo": "^5.0.0",
"node": "^14.15.0 || >=15.0.0"
}
}