-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "hexo-filter-responsive-images",
"version": "1.9.0",
"description": "Generate multiple version of images for responsive Hexo blogs",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexojs/hexo-filter-responsive-images.git"
},
"author": "ertrzyiks <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hexojs/hexo-filter-responsive-images/issues"
},
"homepage": "https://github.com/hexojs/hexo-filter-responsive-images#readme",
"peerDependencies": {
"hexo": "3.x || 4.x || 5.x || 6.x || 7.x"
},
"dependencies": {
"bluebird": "^3.7.2",
"micromatch": "^4.0.4",
"sharp": "^0.32.6",
"stream-to-array": "^2.3.0",
"stream-to-promise": "^3.0.0"
},
"devDependencies": {
"ava": "^6.0.1",
"hexo": "^6.3.0",
"hexo-test-utils": "^0.6.0"
},
"ava": {
"files": [
"specs/*_spec.js"
],
"snapshotDir": "specs/snapshots"
}
}