-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 793 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 793 Bytes
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
{
"name": "cloudinary-cli-tool",
"version": "1.0.1",
"description": "Manage images from cloudinary.com using your command line.",
"bin": {
"cloudTool": "index.js"
},
"main": "index.js",
"scripts": {
"test": "jest && standard --fix"
},
"keywords": [
"cloudinary",
"cloudinary-cli",
"cloudinary-cli-tool"
],
"repository": {
"type": "git",
"url": "git+https://github.com/knrt10/cloudinary-cli"
},
"author": "Kautilya Tripathi <tripathi.kautilya@gmail.com>",
"license": "ISC",
"devDependencies": {
"jest": "^22.4.3",
"nodemon": "^1.17.3",
"standard": "^11.0.1"
},
"standard": {
"env": [
"jest"
]
},
"dependencies": {
"cloudinary": "^1.11.0",
"commander": "^2.15.1",
"inquirer": "^5.2.0"
}
}