-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1 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
{
"name": "@danmasta/mocha-sonar",
"version": "1.1.0",
"author": "Daniel Smith <[email protected]>",
"description": "Mocha reporter for Sonarqube",
"license": "MIT",
"keywords": [
"mocha",
"sonarqube",
"reporter",
"unit",
"test"
],
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "./node_modules/.bin/mocha -R index tests",
"coverage": "./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/mocha -R index tests"
},
"repository": {
"type": "git",
"url": "https://github.com/danmasta/mocha-sonar.git"
},
"engines": {
"npm": ">=3",
"node": ">=6"
},
"dependencies": {
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"mocha": "^10.2.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"chai": "^5.0.0",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"nyc": "^15.1.0"
}
}