-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.38 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
{
"name": "github-action-ts-run-api",
"version": "3.0.4",
"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" : ">=12.0.0"
},
"files": [
"/dist/**/*.d.ts",
"/dist/**/*.js",
"/declarations/**/*.d.ts",
"/declarations/**/*.json",
"/docs",
"/LICENSE",
"/README.md"
],
"dependencies": {
"fs-extra": "^10.1.0",
"yaml": "^1.10.2",
"jsonschema": "^1.4.1",
"intercept-stdout": "^0.1.2",
"tmp": "^0.2.1",
"realistic-structured-clone": "^3.0.0",
"@actions/github": "*"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.18.14",
"@types/tmp": "^0.2.3",
"@types/jest": "^28.1.8",
"typescript": "^4.9.5",
"@actions/core": "^1.10.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ls-engines": "^0.9.0"
},
"scripts": {
"build": "tsc",
"test": "jest",
"testUnit": "jest tests/unit",
"checkDepsEngineRequirements": "ls-engines"
}
}