-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.85 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
60
61
62
63
{
"name": "@backlinedev/backline",
"version": "1.0.0",
"description": "Runtime behavior previews for pull requests - compare API and CLI outputs between PR and base branch",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"bin": {
"backline": "dist/cli.js"
},
"keywords": [
"github-action",
"pr-preview",
"api-testing",
"cli-testing",
"behavior-diff",
"runtime-testing",
"continuous-integration",
"regression-testing",
"pull-request",
"docker-compose"
],
"author": "Ummara Ali Syeda <syeda.umm@northeastern.edu>",
"repository": {
"type": "git",
"url": "git+https://github.com/backlinedev/backline.git"
},
"homepage": "https://github.com/backlinedev/backline#readme",
"bugs": {
"url": "https://github.com/backlinedev/backline/issues"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE",
"action.yml"
],
"scripts": {
"build": "tsc --noEmit && esbuild src/index.ts --bundle --platform=node --target=node24 --format=esm --banner:js=\"import { createRequire } from 'module';const require = createRequire(import.meta.url);\" --outfile=dist/index.js && esbuild src/cli.ts --bundle --platform=node --target=node24 --format=esm --banner:js=\"import { createRequire } from 'module';const require = createRequire(import.meta.url);\" --outfile=dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/rest": "^20.1.1",
"cross-spawn": "^7.0.6",
"js-yaml": "^4.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.9",
"esbuild": "^0.23.0",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vitest": "^2.0.3"
}
}