-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.26 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
{
"name": "gulp-cloudinary-upload",
"version": "0.0.0-development",
"description": "A Gulp plugin to upload images to Cloudinary",
"main": "index.js",
"scripts": {
"format": "xo --fix",
"test": "xo && ava",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheDancingCode/gulp-cloudinary-upload.git"
},
"keywords": [
"gulpplugin",
"cloudinary",
"upload",
"image"
],
"author": "Thomas Vantuycom <thomasvantuycom@protonmail.com> (https://github.com/TheDancingCode)",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheDancingCode/gulp-cloudinary-upload/issues"
},
"homepage": "https://github.com/TheDancingCode/gulp-cloudinary-upload#readme",
"engines": {
"node": ">=12"
},
"files": [
"index.js"
],
"dependencies": {
"cloudinary": "^1.26.3",
"plugin-error": "^2.0.0",
"through2": "^4.0.2",
"vinyl": "^3.0.0",
"vinyl-file": "^3.0.0"
},
"devDependencies": {
"ava": "^3.15.0",
"dotenv": "^16.0.3",
"p-event": "^4.2.0",
"semantic-release": "^21.0.0",
"uuid": "^9.0.0",
"xo": "^0.39.1"
},
"xo": {
"rules": {
"camelcase": 0
}
},
"ava": {
"require": "dotenv/config"
}
}