-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.39 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
{
"author": "MyMiniFactory",
"name": "task-actioner",
"version": "0.1.0",
"description": " Task consumer for RabbitMQ calling a Docker container on demand ",
"bin": {
"task-actioner": "./bin/run"
},
"dependencies": {
"@oclif/command": "^1.5.18",
"@oclif/config": "^1.13.2",
"@oclif/plugin-help": "^2.2.0",
"acorn": "^6.4.1",
"amqplib": "^0.5.3",
"axios": "^0.19.0",
"dotenv": "^8.0.0",
"empty-dir": "^2.0.0",
"figlet": "^1.2.3",
"inquirer": "^6.5.1",
"mime": "^2.4.4",
"minio": "^7.0.10",
"rimraf": "^2.6.3",
"toml": "^3.0.0",
"unique-string": "^2.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"eslint": "^6.1.0",
"globby": "^10.0.1",
"jest": "^24.8.0",
"prettier": "1.18.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"keywords": [
"docker",
"minio",
"oclif",
"rabbitmq"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "task-actioner",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "MyMiniFactory/task-actioner",
"scripts": {
"format": "prettier",
"lint": "eslint",
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "jest"
}
}