-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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": "k6-to-junit",
"version": "1.0.3",
"description": "tool to convert k6 output to junit xml",
"main": "dist/index.js",
"bin": "dist/command.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"start": "node dist/command.js",
"format": "./node_modules/.bin/prettier --write \"src/**\"",
"lint": "./node_modules/.bin/eslint \"src/**\"",
"build": "tsc",
"example": "cat test/out.txt | npm start --silent"
},
"keywords": [
"k6",
"junit",
"report"
],
"homepage": "https://github.com/Mattihew/k6-to-junit",
"bugs": "https://github.com/Mattihew/k6-to-junit/issues",
"repository": "github:Mattihew/k6-to-junit",
"author": "Matt Rayner",
"license": "MIT",
"dependencies": {
"tslib": "^1.10.0",
"xmlbuilder": "^13.0.2",
"yargs": "^14.2.0"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/node": "^12.12.5",
"@types/yargs": "^13.0.3",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
}
}