-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.86 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ts2workflows",
"version": "0.7.0",
"description": "Transpile Typescript code to GCP Workflows programs",
"homepage": "https://github.com/aajanki/ts2workflows",
"repository": {
"type": "git",
"url": "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": ">=18"
},
"scripts": {
"build": "rimraf dist && npm run build:functionmetadata && tsc",
"build:functionmetadata": "tsx scripts/generateBlockingFunctionMetadata.ts",
"lint": "eslint src test scripts",
"format": "prettier . --write",
"test": "mocha",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint"
],
"test/**/*.ts": [
"prettier --write",
"eslint"
],
"scripts/**/*.ts": [
"prettier --write",
"eslint"
],
"*.md": [
"prettier --write"
]
},
"bin": "./dist/cli.js",
"files": [
"dist",
"types",
"README.md",
"language_reference.md",
"LICENSE"
],
"author": "Antti Ajanki",
"license": "MIT",
"keywords": [
"gcp",
"gcloud",
"workflows",
"transpiler"
],
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.6",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"chai": "^5.1.1",
"eslint": "^9.10.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^11.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.10",
"tsx": "^4.10.2",
"typescript-eslint": "^8.0.0"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "^8.0.0",
"commander": "^12.1.0",
"typescript": "^5.0.0",
"yaml": "^2.4.2"
}
}