-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
69 lines (69 loc) · 1.51 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
{
"name": "ghost-storage-cloudinary",
"version": "3.0.1",
"description": "Cloudinary storage adapter for Ghost",
"main": "index.js",
"keywords": [
"cloudinary",
"ghost",
"ghost-blog",
"tryghost",
"ghost-adapter",
"blog",
"image-hosting",
"storage",
"storage-adapter"
],
"repository": "https://github.com/eexit/ghost-storage-cloudinary",
"bugs": {
"url": "https://github.com/eexit/ghost-storage-cloudinary/issues"
},
"author": "Joris Berthelot <[email protected]>",
"contributors": [
{
"name": "Seth Brasile",
"email": "[email protected]"
},
{
"name": "Marco Mornati",
"email": "[email protected]"
},
{
"name": "aphe",
"email": "[email protected]"
}
],
"license": "ISC",
"scripts": {
"test": "mocha tests/index",
"coverage": "nyc --reporter=lcov mocha tests/index",
"eslint": "$(yarn bin)/eslint ."
},
"engines": {
"node": "^18",
"cli": "^1.25.0"
},
"dependencies": {
"@tryghost/debug": "^0.1.17",
"@tryghost/errors": "^1.2.18",
"bluebird": "^3.7.0",
"cloudinary": "^1.30.0",
"ghost-storage-base": "^1.0.0",
"got": "^11.0",
"image-size": "^1.0.1",
"lodash": "^4.17.20",
"os-locale": "^6.0.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^8.19.0",
"eslint-plugin-mocha": "^10.0.5",
"mocha": "^10.8.2",
"nock": "^13.2.8",
"nyc": "^15.0.0",
"sinon": "^17.0.1"
},
"resolutions": {
"moment": "^2.29.4"
}
}