forked from getgauge/gauge-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"name": "gauge-typescript",
"version": "0.2.2",
"description": "TypeScript language runner for Gauge",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"build": "pnpm lint && tsc",
"test:coverage": "jest --verbose --coverage --detectOpenHandles --forceExit",
"codecov": "codecov",
"test": "jest --verbose --detectOpenHandles --forceExit",
"gen-proto": "sh genproto.sh",
"prepublishOnly": "tsc",
"package": "sh build.sh package",
"installPlugin": "sh build.sh install",
"finstallPlugin": "sh build.sh forceinstall",
"uninstallPlugin": "sh build.sh uninstall"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tkitsunai/gauge-typescript.git"
},
"keywords": [
"gauge",
"Acceptance Test",
"TypeScript",
"Automation"
],
"author": "BugDiver <vinayshankar00@gmail.com>",
"contributors": [
"tkitsunai <kitsunai.project@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tkitsunai/gauge-typescript/issues"
},
"dependencies": {
"@grpc/grpc-js": "^1.10.4",
"google-protobuf": "^3.21.2",
"klaw-sync": "^6.0.0",
"ts-node": "10.9.2",
"tsx": "^4.7.1",
"typescript": "5.4.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/google-protobuf": "^3.15.12",
"@types/jest": "^29.5.12",
"@types/klaw-sync": "^6.0.5",
"@types/node": "^20.11.30",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"codecov": "^3.8.3",
"eslint": "^8.57.0",
"grpc-tools": "^1.12.4",
"grpc_tools_node_protoc_ts": "^5.3.3",
"jest": "^29.7.0",
"jest-mock-process": "^2.0.0",
"jest-ts-auto-mock": "^2.1.0",
"prettier": "^3.2.5",
"ts-auto-mock": "^3.7.2",
"ts-jest": "^29.1.2",
"ts-patch": "^3.1.2"
}
}