-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.12 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ts2workflows",
"version": "0.15.0",
"description": "Transpile Typescript code to GCP Workflows programs",
"homepage": "https://github.com/aajanki/ts2workflows",
"repository": {
"type": "git",
"url": "git+https://github.com/aajanki/ts2workflows.git"
},
"bugs": "https://github.com/aajanki/ts2workflows/issues",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npm run build:functionmetadata && tsc --build",
"build:functionmetadata": "node scripts/generateBlockingFunctionMetadata.js",
"lint": "oxlint src test scripts",
"format": "prettier . --write",
"test": "mocha",
"test:coverage": "nyc --reporter=text --reporter=html mocha",
"prepare": "husky && npm run build"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"oxlint"
],
"test/**/*.ts": [
"prettier --write",
"oxlint"
],
"scripts/**/*.ts": [
"prettier --write",
"oxlint"
],
"*.md": [
"prettier --write"
]
},
"bin": {
"ts2workflows": "./dist/cli.js"
},
"files": [
"dist",
"types",
"README.md",
"language_reference.md",
"CHANGELOG.md",
"LICENSE"
],
"author": "Antti Ajanki",
"license": "MIT",
"keywords": [
"gcp",
"gcloud",
"workflows",
"transpiler"
],
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/chai": "5.2.3",
"@types/mocha": "10.0.10",
"@types/node": "^20",
"@types/ramda": "0.32.0",
"chai": "6.2.2",
"globals": "17.8.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"mocha": "11.7.6",
"nyc": "18.0.0",
"oxlint": "1.76.0",
"oxlint-tsgolint": "7.0.2001",
"prettier": "3.9.4",
"rimraf": "6.1.3",
"source-map-support": "0.5.21",
"tsx": "4.23.1",
"typescript": "^5.5.4"
},
"peerDependencies": {
"typescript": ">=5.5.4 <7"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "8.65.0",
"commander": "15.0.0",
"ramda": "0.32.0",
"ts-brand": "0.2.0",
"yaml": "2.9.0"
}
}