-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.68 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
{
"name": "k6-expect",
"version": "1.2.3",
"description": "k6 library that simplifies writing tests in functional way by providing a simple and readable syntax for expectations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --ci --coverage",
"format": "npx prettier --write \"{src,test}/*.{ts,tsx}\"",
"lint": "eslint \"{src,test}/*.{ts,tsx}\"",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/simbadltd/k6-expect.git"
},
"bugs": {
"url": "https://github.com/simbadltd/k6-expect/issues"
},
"homepage": "https://github.com/simbadltd/k6-expect",
"author": "Konstantin Kryzhanovskii",
"license": "MIT",
"keywords": [
"k6",
"expect",
"functional",
"test",
"assert",
"assertion",
"testing"
],
"devDependencies": {
"@babel/core": "7.16.10",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.16.7",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@types/jest": "^24.0.21",
"@types/k6": "0.35.2",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"babel-loader": "8.2.3",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "10.2.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "1.19.1",
"ts-jest": "^24.1.0",
"typescript": "4.5.5",
"webpack": "5.67.0",
"webpack-cli": "4.9.1",
"webpack-glob-entries": "1.0.1"
},
"dependencies": {
"tslib": "^2.3.1"
}
}