forked from getgauge/gauge-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.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
{
"name": "gauge-ts",
"version": "0.0.6",
"description": "Typescript language runner for gauge",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test:coverage": "jest --coverage",
"codecov": "codecov",
"test": "jest --verbose",
"gen-proto": "sh genproto.sh",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugdiver/gauge-ts.git"
},
"keywords": [
"gauge",
"Acceptance Test",
"Typescript",
"Automation"
],
"author": "BugDiver <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bugdiver/gauge-ts/issues"
},
"dependencies": {
"@grpc/proto-loader": "^0.5.3",
"grpc": "^1.24.2",
"klaw-sync": "^6.0.0",
"protobufjs": "^6.8.8",
"ts-node": "^8.7.0",
"typescript": "^3.8.3",
"uuid": "^7.0.1"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/klaw-sync": "^6.0.0",
"@types/uuid": "^7.0.0",
"codecov": "^3.6.5",
"jest": "^24.9.0",
"jest-mock-process": "^1.3.2",
"ts-jest": "^24.3.0"
}
}