This repository was archived by the owner on Nov 3, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
115 lines (115 loc) · 2.68 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "shark",
"description": "A CLI to interact with DigitalOcean",
"version": "2.3.0",
"author": "Satya Rohith <gsatyarohith@gmail.com> (https://satyarohith.com)",
"bin": {
"shark": "./bin/run"
},
"bugs": "https://github.com/satyarohith/shark/issues",
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.14.0",
"@oclif/plugin-help": "^2.2.3",
"cache-conf": "^0.6.0",
"cardinal": "^2.1.1",
"chalk": "^4.0.0",
"cli-ux": "^5.4.5",
"conf": "^6.2.1",
"do-wrapper": "^3.25.4",
"enquirer": "^2.3.4",
"ora": "^4.0.3",
"update-notifier": "^4.1.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.5",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"husky": "^4.2.3",
"mocha": "^7.1.0",
"nock": "^13.0.3",
"nyc": "^15.0.0",
"xo": "^0.25.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
},
"xo": {
"space": true,
"rules": {
"quotes": 0,
"object-curly-spacing": 0,
"camelcase": 0,
"unicorn/no-process-exit": 0,
"operator-linebreak": [
"error",
"before"
]
},
"ignores": [
"test"
]
},
"engines": {
"node": ">=12.16.1"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/satyarohith/shark",
"keywords": [
"oclif",
"shark",
"digitalocean",
"cli"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "shark",
"plugins": [
"@oclif/plugin-help"
],
"topics": {
"actions": {
"description": "perform actions related operations"
},
"droplets": {
"description": "perform droplets related operations"
},
"projects": {
"description": "perform projects related operations"
},
"ssh_keys": {
"description": "perform ssh_keys related operations"
},
"volumes": {
"description": "perform volumes related operations"
},
"token": {
"description": "perform token related operations"
},
"records": {
"description": "perform domain records related operations"
},
"snapshots": {
"description": "perform snapshots related operations"
}
}
},
"repository": "satyarohith/shark",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "xo && nyc mocha --forbid-only \"test/**/*.test.js\"",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"readme": "oclif-dev readme"
}
}