-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "github-actions-wac",
"version": "1.0.0",
"main": "index.js",
"description": "GitHub Actions - Workflows as Code (WaC).",
"repository": "git@github.com:adrians5j/github-actions-wac.git",
"author": "Adrian Smijulj <adrian1358@gmail.com>",
"license": "MIT",
"dependencies": {
"chokidar": "^3.5.2",
"cosmiconfig": "^7.0.1",
"debug": "^4.3.4",
"fast-glob": "^3.2.11",
"js-yaml": "^4.1.0",
"ts-node": "^10.8.1",
"yargs": "^17.4.0"
},
"devDependencies": {
"@swc/cli": "^0.1.51",
"@swc/core": "^1.2.108",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^28.1.3",
"@types/node": "^16.7.13",
"@types/node-fetch": "^2.6.2",
"jest": "^28.1.2",
"json-schema-to-typescript": "^11.0.1",
"node-fetch": "^2.2.6",
"prettier": "^2.4.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"peerDependencies": {
"typescript": "^4.0.0"
},
"bin": {
"ghawac": "./bin.js",
"github-actions-wac": "./bin.js"
},
"scripts": {
"build": "rm -rf dist && swc src -d dist --source-maps --extensions '.ts' && tsc ./src/**/*.ts --outDir dist --declaration --emitDeclarationOnly",
"watch": "swc src -d dist --source-maps --extensions '.ts' --watch",
"prepare-dist-for-release": "cp README.md dist/README.md && cp package.json dist/package.json",
"generate-gh-actions-workflow-types": "ts-node scripts/generateGithubActionsWorkflowTypes.ts",
"github-actions-wac": "node dist/bin.js",
"ghawac": "node dist/bin.js",
"test": "jest"
},
"release": {
"branches": [
"main"
]
}
}