-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.32 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
{
"name": "github-action-ts-run-api",
"version": "3.1.0",
"description": "Library for GitHub Action integration and unit testing",
"main": "./dist",
"types": "./dist/index.d.ts",
"keywords": [
"github",
"actions",
"api",
"js",
"ts",
"tests",
"integration"
],
"repository": {
"type": "git",
"url": "https://github.com/cardinalby/js-github-action-test-utils"
},
"homepage": "https://github.com/cardinalby/js-github-action-test-utils",
"author": "cardinalby",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"/dist/**/*.d.ts",
"/dist/**/*.js",
"/declarations/**/*.d.ts",
"/declarations/**/*.json",
"/docs",
"/LICENSE",
"/README.md"
],
"dependencies": {
"@actions/github": "^5.1.1",
"intercept-stdout": "^0.1.2",
"jsonschema": "^1.5.0",
"realistic-structured-clone": "^3.0.0",
"tmp": "^0.2.5",
"yaml": "^1.10.3"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@types/jest": "^28.1.8",
"@types/node": "^24.12.2",
"@types/tmp": "^0.2.6",
"jest": "^30.3.0",
"ls-engines": "^0.9.4",
"ts-jest": "^29.4.9",
"typescript": "^5.9.3"
},
"scripts": {
"build": "tsc",
"test": "jest",
"testUnit": "jest tests/unit",
"checkDepsEngineRequirements": "ls-engines"
}
}