forked from sethbrasile/ghost-cloudinary-store
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.21 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.21 KB
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
{
"name": "ghost-cloudinary-store",
"version": "3.3.0",
"description": "Cloudinary storage adapter for Ghost >= 1.x",
"main": "index.js",
"keywords": [
"cloudinary",
"ghost",
"blog",
"image",
"storage",
"module"
],
"repository": {
"type": "git",
"url": "https://github.com/mmornati/ghost-cloudinary-store"
},
"bugs": {
"url": "https://github.com/mmornati/ghost-cloudinary-store/issues"
},
"author": "Joris Berthelot <admin@eexit.net>",
"contributors": [
{
"name": "Seth Brasile",
"email": "seth.brasile@gmail.com"
},
{
"name": "Marco Mornati",
"email": "marco@mornati.net"
},
{
"name": "aphe",
"email": "afriyandi@cizzu.com"
},
{
"name": "eexit"
}
],
"license": "ISC",
"scripts": {
"test": "mocha test/index",
"cover": "istanbul cover _mocha -- test"
},
"dependencies": {
"bluebird": "3.5.4",
"cloudinary": "~1.14.0",
"ghost-storage-base": "0.0.3"
},
"devDependencies": {
"chai": "^4.1.2",
"codeclimate-test-reporter": "^0.5.0",
"istanbul": "^0.4.5",
"jshint": "^2.10.2",
"mocha-jshint": "^2.3.1",
"nock": "^11.1.0",
"sinon": "^7.2.4"
}
}