-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 988 Bytes
/
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": "k6-html-reporter",
"version": "1.0.5",
"description": "A html reporter for k6",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"dependencies": {
"ejs": "^3.1.5"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.10",
"jest": "^26.6.3",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.0",
"typescript": "^4.2.3"
},
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "rm -rf dist && tsc && cd dev && node index.js",
"start": "ts-node src/index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/szboynono/k6-html-reporter.git"
},
"keywords": [
"report",
"k6",
"html",
"json to html",
"k6 html reporter",
"k6 summary report"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/szboynono/k6-html-reporter/issues"
},
"homepage": "https://github.com/szboynono/k6-html-reporter#readme"
}