-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "github-actions-development-kit",
"version": "0.0.1",
"description": "A TypeScript Development Kit for defining github actions",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"test": "jest",
"test:linting": "eslint --ext .ts . && prettier --check .",
"generate:workflow-triggers": "ts-node --esm ./scripts/generators/generateWorkflowTriggers.ts",
"compile:pipeline": "ts-node --esm ./src/cli.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcus13371337/github-actions-development-kit.git"
},
"keywords": [
"github-actions",
"development-kit",
"typescript"
],
"author": "Marcus Ahlberg",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcus13371337/github-actions-development-kit/issues"
},
"homepage": "https://github.com/marcus13371337/github-actions-development-kit#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/js-yaml": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"change-case": "^4.1.2",
"eslint": "^8.34.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}