forked from getgauge/gauge-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.57 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
{
"name": "gauge-ts",
"version": "0.1.1",
"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": "npm run lint && tsc",
"test:coverage": "jest --verbose --coverage --detectOpenHandles --forceExit",
"codecov": "codecov",
"test": "jest --verbose --detectOpenHandles --forceExit",
"gen-proto": "sh genproto.sh",
"prepublishOnly": "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/grpc-js": "^1.1.5",
"google-protobuf": "^3.13.0",
"klaw-sync": "^6.0.0",
"ts-node": "8.7.0",
"typescript": "3.8.3",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/google-protobuf": "^3.7.3",
"@types/jest": "^24.9.1",
"@types/klaw-sync": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"@types/uuid": "^8.3.0",
"codecov": "^3.7.2",
"grpc-tools": "^1.9.1",
"grpc_tools_node_protoc_ts": "^4.1.3",
"jest": "^26.4.2",
"jest-mock-process": "^1.4.0",
"jest-ts-auto-mock": "^1.0.11",
"ts-auto-mock": "^2.6.4",
"ts-jest": "^26.3.0",
"ttypescript": "^1.5.12"
}
}