-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.51 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
{
"name": "probo-reaper",
"version": "5.0.1",
"description": "Cleans up old Probo containers and ensures that only the allocated number of containers exist.",
"main": "index.js",
"bin": {
"probo-reaper": "./bin/probo-reaper"
},
"scripts": {
"test": "mocha --recursive --require should",
"watch": "mocha -w --recursive --require should",
"coverage": "nyc ./node_modules/.bin/_mocha",
"standards": "eslint .",
"lint-fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProboCI/probo-reaper.git"
},
"keywords": [
"probo"
],
"author": "Ilya Braude <[email protected]>",
"license": "Proprietary",
"bugs": {
"url": "https://github.com/ProboCI/probo-reaper/issues"
},
"homepage": "https://github.com/ProboCI/probo-reaper#readme",
"dependencies": {
"JSONStream": "^1.0.6",
"async": "^1.5.2",
"bluebird": "^3.0.5",
"bunyan": "^1.8.15",
"bytes": "^2.2.0",
"co": "^4.6.0",
"co-read": "^0.1.1",
"leveldown": "^5.1.1",
"levelup": "^4.1.0",
"lodash": "^4.17.21",
"probo-eventbus": "^1.0.5",
"querystring": "^0.2.0",
"request": "^2.72.0",
"request-promise": "^4.2.4",
"through2": "^3.0.1",
"yaml-config-loader": "^2.1.0",
"yargs": "^3.30.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.20.0",
"eslint-config-probo": "^2.0.0",
"nyc": "^15.1.0",
"memdown": "^4.1.0",
"mocha": "^8.3.0",
"nock": "^13.0.8",
"should": "^7.1.1"
}
}