-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "json-reporter",
"version": "3.1.0",
"description": "Common plugin for testplane and hermione which is intended to aggregate the results of tests running",
"main": "plugin.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && npm run test-unit",
"test-unit": "mocha test",
"precommit": "npm run lint",
"commitmsg": "conventional-changelog-lint -e",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gemini-testing/json-reporter.git"
},
"bugs": {
"url": "https://github.com/gemini-testing/json-reporter/issues"
},
"engines": {
"node": ">= 18"
},
"keywords": [
"testplane",
"hermione",
"plugin",
"json-reporter"
],
"homepage": "https://github.com/gemini-testing/json-reporter#readme",
"author": "Dmitriy Dudkevich",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.7",
"fs-extra": "^2.0.0",
"gemini-configparser": "^1.0.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"chai": "^3.5.0",
"conventional-changelog-lint": "^1.0.1",
"eslint": "^3.4.0",
"eslint-config-gemini-testing": "^2.2.0",
"husky": "^0.11.9",
"mocha": "^3.0.2",
"proxyquire": "^1.7.11",
"sinon": "^1.17.5",
"standard-version": "^4.0.0"
}
}