-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "workflow-runner",
"version": "1.0.0",
"description": "Imitates GitHub Workflow runner",
"main": "built/runfs.js",
"author": "mast76",
"license": "MIT",
"bugs": {
"url": "https://github.com/mast76/workflow-runner/issues"
},
"homepage": "https://github.com/mast76/workflow-runner#readme",
"directories": {
"built": "built",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mast76/workflow-runner.git"
},
"scripts": {
"build": "npx tsc --pretty",
"test": "concurrently --kill-others-on-fail --prefix none npm:test:*",
"test:sw": "node --test test/*"
},
"keywords": [
"GitHub",
"Workflow"
],
"type": "module",
"devDependencies": {
"@reporters/github": "^1.7.0",
"@types/ini": "^4.1.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "20.0.0",
"@types/readline-sync": "^1.4.8",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"dependencies": {
"@tsmx/string-crypto": "^1.0.6",
"ini": "^4.1.3",
"js-yaml": "^4.1.0",
"readline-sync": "^1.4.10"
}
}