This repository has been archived by the owner on Feb 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
73 lines (73 loc) · 2.15 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "jmeter-to-k6",
"version": "0.1.19",
"description": "Convert JMeter JMX files to k6 JavaScript",
"license": "Apache-2.0",
"keywords": [
"load-test",
"load-testing",
"server-load",
"performance"
],
"homepage": "https://github.com/loadimpact/jmeter-to-k6",
"repository": "github:loadimpact/jmeter-to-k6",
"bugs": "https://github.com/loadimpact/jmeter-to-k6/issues",
"directories": {
"lib": "src",
"bin": "bin",
"test": "test"
},
"bin": {
"jmeter-to-k6": "bin/jmeter-to-k6.js"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"@rgrove/parse-xml": "^1.1.1",
"browserify": "^16.2.3",
"buffer": "^4.2.0",
"chalk": "^2.4.2",
"fs-extra": "^7.0.1",
"he": "^1.2.0",
"husky": "^4.2.5",
"iconv-lite": "^0.4.24",
"jsonpath": "1.0.1",
"papaparse": "^4.6.3",
"perl-regex": "^1.0.4",
"prettier": "^2.0.5",
"string.prototype.matchall": "^3.0.1",
"tinyify": "^2.5.0",
"tmp": "^0.1.0",
"yaml": "^1.3.2",
"yargs": "^12.0.5"
},
"devDependencies": {
"ava": "^1.0.0-rc.2",
"cross-env": "^5.2.0",
"decache": "^4.5.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"jsdoc": "^3.5.5",
"mock-require": "^3.0.2",
"npm-run-all": "^4.1.5",
"sinon": "^7.1.1"
},
"scripts": {
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"format": "prettier ./src -c",
"format:fix": "prettier . --write",
"doc": "jsdoc -c .jsdoc.json --pedantic",
"test-int": "cross-env NODE_PATH=src:test ava test/int",
"test-unit": "cross-env NODE_PATH=src:test ava test/unit",
"test": "npm-run-all test-unit test-int",
"test-hoc": "cross-env NODE_PATH=src:test ava"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn format",
"pre-push": "yarn test"
}
}
}