This repository has been archived by the owner on Jun 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 1.55 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
{
"name": "farm-cli",
"description": "Resilient multi-process architecture from your CLI",
"homepage": "https://github.com/Kikobeats/farm-cli",
"version": "3.0.0",
"main": "bin",
"bin": {
"farm": "bin/cli/index.js"
},
"author": {
"email": "josefrancisco.verdu@gmail.com",
"name": "Kiko Beats",
"url": "https://github.com/Kikobeats"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kikobeats/farm-cli.git"
},
"bugs": {
"url": "https://github.com/Kikobeats/farm-cli/issues"
},
"keywords": [
"child",
"cli",
"farm",
"processing",
"worker"
],
"dependencies": {
"debug": "~4.3.1",
"exists-file": "~3.0.2",
"is-directory": "~0.3.1",
"is-file": "~1.0.0",
"meow": "~9.0.0",
"run-series": "~1.1.8",
"update-notifier": "~5.1.0",
"worker-farm": "~1.7.0"
},
"devDependencies": {
"async": "latest",
"coveralls": "latest",
"git-dirty": "latest",
"humanize-list": "latest",
"mocha": "latest",
"mutexify": "latest",
"nyc": "latest",
"pify": "latest",
"redis": "latest",
"should": "latest",
"standard": "latest",
"standard-markdown": "latest"
},
"engines": {
"node": ">= 8"
},
"files": [
"bin"
],
"scripts": {
"clean": "rm -rf node_modules",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard-markdown && standard",
"pretest": "npm run lint",
"test": "nyc mocha"
},
"license": "MIT",
"standard": {
"globals": [
"describe",
"it"
]
}
}