-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "@testplane/retry-progressive",
"version": "1.0.0",
"description": "Testplane plugin for adding extra retries at tests with errors matched by patterns.",
"main": "index.js",
"scripts": {
"coverage": "nyc npm run test",
"lint": "eslint .",
"test": "npm run test-unit && npm run lint",
"test-unit": "mocha test",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/gemini-testing/testplane-retry-progressive.git"
},
"keywords": [
"testplane",
"hermione",
"plugin",
"retry",
"retries"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gemini-testing/testplane-retry-progressive/issues"
},
"homepage": "https://github.com/gemini-testing/testplane-retry-progressive#readme",
"dependencies": {
"gemini-configparser": "1.0.0",
"lodash": "4.17.11"
},
"devDependencies": {
"chai": "4.2.0",
"eslint": "5.16.0",
"eslint-config-gemini-testing": "2.8.0",
"mocha": "6.2.1",
"nyc": "14.1.1",
"sinon": "7.5.0",
"standard-version": "7.0.0"
}
}