forked from grafana/har-to-k6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.11 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
74
75
{
"name": "har-to-k6",
"description": "Convert LI-HAR to k6 script",
"version": "0.1.3",
"license": "Apache-2.0",
"keywords": [
"k6",
"har",
"li-har",
"loadtest",
"load-test",
"load-testing",
"server-load",
"performance"
],
"directories": {
"lib": "src"
},
"homepage": "https://github.com/loadimpact/har-to-k6",
"repository": "github:loadimpact/har-to-k6",
"bugs": "https://github.com/loadimpact/har-to-k6/issues",
"browser": "standalone.js",
"main": "src/index.js",
"bin": "bin/har-to-k6.js",
"dependencies": {
"bundle-collapser": "^1.3.0",
"caporal": "1.0.0",
"chalk": "^2.4.2",
"emailjs-mime-builder": "^2.0.5",
"form-urlencoded": "^3.0.0",
"fs-extra": "^7.0.1",
"is-natural-number": "^4.0.1",
"is-plain-object": "^2.0.4",
"iso8601-validator": "^1.0.1",
"jsonpath": "^1.0.1",
"moment": "^2.24.0",
"pkginfo": "^0.4.1",
"prettier": "^1.17.0",
"tmp": "^0.1.0",
"urijs": "^1.19.1",
"verror": "^1.10.0"
},
"devDependencies": {
"ava": "^1.4.1",
"cross-env": "^5.2.0",
"husky": "^3.0.0",
"mock-require": "^3.0.3",
"npm-run-all": "^4.1.5",
"sinon": "^7.3.1",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
},
"scripts": {
"bundle": "./node_modules/.bin/webpack --config webpack.config.js",
"lint": "npm-run-all lint-js",
"lint-js": "standard --verbose | snazzy",
"test": "npm-run-all test-unit test-int",
"test-int": "cross-env NODE_PATH=src:test ava test/int",
"test-unit": "cross-env NODE_PATH=src:test ava test/unit",
"test-hoc": "cross-env NODE_PATH=src:test ava"
},
"standard": {
"ignore": [
"standalone.js"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-js",
"pre-push": "npm-run-all lint-js test bundle"
}
}
}