-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 943 Bytes
/
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
{
"name": "gearman_status",
"version": "3.0.0",
"description": "Gearman status check CLI.",
"homepage": "https://github.com/kotarac/gearman_status",
"bugs": "https://github.com/kotarac/gearman_status/issues",
"repository": {
"type": "git",
"url": "git://github.com/kotarac/gearman_status.git"
},
"keywords": [
"gearman"
],
"author": {
"name": "Stipe Kotarac",
"email": "[email protected]",
"url": "https://github.com/kotarac"
},
"license": "MIT",
"main": "index.js",
"bin": "index.js",
"dependencies": {
"log-update": "^4.0.0",
"minimist": "^1.2.5",
"node-netcat": "^1.4.8",
"text-table": "^0.2.0"
},
"devDependencies": {
"coffeescript": "^2.5.1"
},
"engines": {
"node": ">=10",
"yarn": ">=1"
},
"scripts": {
"prepublish": "yarn run build",
"build": "echo '#!/usr/bin/env node' > index.js && coffee -p -b src/index.coffee >> index.js"
}
}