@grafana/k6-test-builder 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -0
- package/dist/index.d.ts +1406 -0
- package/dist/index.js +14397 -0
- package/dist/module.js +14377 -0
- package/package.json +113 -0
package/package.json
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@grafana/k6-test-builder",
|
|
3
|
+
"version": "0.2.7",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"module": "dist/module.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"description": "k6 test builder",
|
|
8
|
+
"devDependencies": {
|
|
9
|
+
"@babel/core": "^7.19.1",
|
|
10
|
+
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
11
|
+
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
|
|
12
|
+
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
|
|
13
|
+
"@babel/preset-react": "^7.18.6",
|
|
14
|
+
"@parcel/packager-ts": "^2.7.0",
|
|
15
|
+
"@parcel/transformer-typescript-types": "^2.7.0",
|
|
16
|
+
"@storybook/addon-actions": "^6.5.12",
|
|
17
|
+
"@storybook/addon-essentials": "^6.5.12",
|
|
18
|
+
"@storybook/addon-interactions": "^6.5.12",
|
|
19
|
+
"@storybook/addon-links": "^6.5.12",
|
|
20
|
+
"@storybook/builder-webpack4": "^6.5.12",
|
|
21
|
+
"@storybook/builder-webpack5": "^6.5.12",
|
|
22
|
+
"@storybook/manager-webpack4": "^6.5.12",
|
|
23
|
+
"@storybook/manager-webpack5": "^6.5.12",
|
|
24
|
+
"@storybook/react": "^6.5.12",
|
|
25
|
+
"@storybook/testing-library": "^0.0.13",
|
|
26
|
+
"@svgr/webpack": "^6.3.1",
|
|
27
|
+
"@types/jest": "^27.5.2",
|
|
28
|
+
"@types/lodash-es": "^4.17.6",
|
|
29
|
+
"@types/node": "^16.11.59",
|
|
30
|
+
"@types/react": "^16.14.32",
|
|
31
|
+
"@types/react-custom-scrollbars": "^4.0.10",
|
|
32
|
+
"@types/react-dom": "^16.9.16",
|
|
33
|
+
"@types/sortablejs": "^1.15.0",
|
|
34
|
+
"@types/styled-components": "^5.1.15",
|
|
35
|
+
"babel-loader": "^8.2.5",
|
|
36
|
+
"babel-plugin-module-resolver": "^4.1.0",
|
|
37
|
+
"eslint-config-react-app": "^7.0.1",
|
|
38
|
+
"babel-plugin-styled-components": "^2.0.7",
|
|
39
|
+
"parcel": "^2.7.0",
|
|
40
|
+
"prettier": "2.4.1",
|
|
41
|
+
"process": "^0.11.10",
|
|
42
|
+
"react": "^16.14.0",
|
|
43
|
+
"react-dom": "^16.14.0",
|
|
44
|
+
"sortablejs": "1.14.0",
|
|
45
|
+
"storybook-dark-mode": "^1.1.2",
|
|
46
|
+
"styled-components": "^5.3.1",
|
|
47
|
+
"typescript": "4.6.4",
|
|
48
|
+
"web-vitals": "^2.1.4",
|
|
49
|
+
"webpack": "5"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"prettier": "2",
|
|
53
|
+
"react": ">= 16.14.0",
|
|
54
|
+
"react-dom": ">= 16.14.0",
|
|
55
|
+
"sortablejs": "^1.10.2",
|
|
56
|
+
"styled-components": "^5.3.1"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@material-ui/core": "^4.12.4",
|
|
60
|
+
"@material-ui/lab": "^4.0.0-alpha.61",
|
|
61
|
+
"@parcel/transformer-svg-react": "^2.7.0",
|
|
62
|
+
"@reduxjs/toolkit": "^1.8.3",
|
|
63
|
+
"clsx": "^1.2.1",
|
|
64
|
+
"har-to-k6": "loadimpact/har-to-k6#974519ba0b688e29af262334e30f41ebf027af08",
|
|
65
|
+
"lodash-es": "^4.17.20",
|
|
66
|
+
"path-to-regexp": "^6.2.1",
|
|
67
|
+
"react-custom-scrollbars": "^4.2.1",
|
|
68
|
+
"react-redux": "^7.2.2",
|
|
69
|
+
"react-sortablejs": "6.1.1",
|
|
70
|
+
"redux": "^4.0.5"
|
|
71
|
+
},
|
|
72
|
+
"alias": {
|
|
73
|
+
"TestBuilder": "./src/TestBuilder"
|
|
74
|
+
},
|
|
75
|
+
"scripts": {
|
|
76
|
+
"start": "parcel ./src/development.html",
|
|
77
|
+
"clean": "rm -rf dist",
|
|
78
|
+
"prepack": "npm run build",
|
|
79
|
+
"build": "npm run clean && parcel build ./src/TestBuilder/index.ts --no-source-maps",
|
|
80
|
+
"storybook": "start-storybook -p 6006",
|
|
81
|
+
"build-storybook": "build-storybook",
|
|
82
|
+
"patchAlpha": "npm version prerelease --preid=alpha",
|
|
83
|
+
"watch": "npm run clean && parcel watch ./src/TestBuilder/index.ts",
|
|
84
|
+
"lint": "eslint ./src/"
|
|
85
|
+
},
|
|
86
|
+
"eslintConfig": {
|
|
87
|
+
"extends": [
|
|
88
|
+
"react-app"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
"files": [
|
|
92
|
+
"dist"
|
|
93
|
+
],
|
|
94
|
+
"browserslist": {
|
|
95
|
+
"production": [
|
|
96
|
+
"node 16"
|
|
97
|
+
],
|
|
98
|
+
"development": [
|
|
99
|
+
"last 1 chrome version",
|
|
100
|
+
"last 1 firefox version",
|
|
101
|
+
"last 1 safari version"
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
"isLibrary": true,
|
|
105
|
+
"prettier": {
|
|
106
|
+
"trailingComma": "es5",
|
|
107
|
+
"semi": false,
|
|
108
|
+
"singleQuote": true,
|
|
109
|
+
"printWidth": 100,
|
|
110
|
+
"arrowParens": "avoid",
|
|
111
|
+
"endOfLine": "lf"
|
|
112
|
+
}
|
|
113
|
+
}
|