-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1012 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1012 Bytes
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
{
"name": "k6-jslib-utils",
"repository": "https://github.com/grafana/k6-jslib-utils",
"version": "1.3.0",
"main": "src/index.js",
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/plugin-transform-block-scoping": "7.28.6",
"@babel/preset-env": "7.29.2",
"@types/k6": "0.57.1",
"@types/webpack": "5.28.5",
"babel-loader": "8.4.1",
"clean-webpack-plugin": "4.0.0",
"husky": "9.1.7",
"lint-staged": "12.5.0",
"prettier": "3.8.3",
"terser-webpack-plugin": "5.5.0",
"ts-loader": "9.5.7",
"webpack": "5.106.2",
"webpack-cli": "7.0.2",
"webpack-glob-entries": "1.0.1"
},
"engines": {},
"scripts": {
"webpack": "webpack",
"test": "k6 run tests/",
"prepare": "husky"
},
"keywords": [
"k6"
],
"author": "k6 team",
"license": "MIT",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}