-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "@testplane/test-repeater",
"version": "1.0.0",
"description": "Plugin for repeat tests the specified number of times",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run test-unit && npm run lint",
"test-unit": "mocha",
"release": "standard-version"
},
"engines": {
"node": ">= 16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gemini-testing/testplane-test-repeater.git"
},
"keywords": [
"testplane",
"hermione",
"plugin",
"repeater"
],
"author": "Dmitriy Dudkevich <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gemini-testing/testplane-test-repeater/issues"
},
"homepage": "https://github.com/gemini-testing/testplane-test-repeater#readme",
"dependencies": {
"gemini-configparser": "^1.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"app-module-path": "^2.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.16.0",
"eslint-config-gemini-testing": "^2.8.0",
"eventemitter2": "^6.4.7",
"husky": "^3.0.9",
"mocha": "^6.2.2",
"sinon": "^7.5.0",
"standard-version": "^7.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint"
}
}
}