This repository has been archived by the owner on Jan 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
94 lines (94 loc) · 2.11 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
{
"name": "testarmada-magellan",
"version": "11.0.20",
"description": "Massively parallel automated testing",
"main": "src/main",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git@github.com:TestArmada/magellan.git"
},
"contributors": [
{
"name": "Maciej Adwent",
"url": "http://github.com/Maciek416"
},
{
"name": "Dave Cadwallader",
"url": "http://github.com/geekdave"
},
{
"name": "Lei Zhu",
"url": "https://github.com/archlichking"
}
],
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint src/** bin/**",
"lint-fix": "eslint --fix src/** bin/**",
"upload-coverage": "codecov"
},
"dependencies": {
"async": "^2.1.4",
"cli-color": "^1.1.0",
"co": "^4.6.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.1",
"http-proxy": "^1.18.1",
"lodash": "^4.6.1",
"marge": "^1.0.1",
"once": "^1.3.1",
"portscanner": "^2.1.1",
"pretty-ms": "^2.1.0",
"request": "^2.55.0",
"sanitize-filename": "^1.5.3",
"slugify": "^1.0.2",
"stream-slic3r": "^1.0.1",
"sync-request": "^4.0.1",
"testarmada-magellan-local-executor": "^2.0.0",
"testarmada-tree-kill": "^2.0.0",
"yargs": "^16.1.0"
},
"engineStrict": true,
"engines": {
"npm": ">=2.1.10"
},
"bin": {
"magellan": "./bin/magellan",
"magellan_": "./bin/magellan"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"codecov": "^3.7.1",
"eslint": "^4.18.2",
"eslint-config-walmart": "^1.1.0",
"eslint-plugin-filenames": "^1.1.0",
"istanbul": "^0.4.5",
"jest": "^26.5.3",
"sinon": "^1.17.6",
"testarmada-magellan-mocha-plugin": "^7.0.1"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coverageReporters": [
"lcov"
],
"resetMocks": true,
"testMatch": [
"**/test/**/**.test.js"
],
"coverageThreshold": {
"global": {
"statements": 90,
"branches": 80,
"functions": 90
}
}
}
}