-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.05 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
{
"name": "action-rerecord",
"version": "0.0.1",
"description": "Rerecord with updated sources and analyze the differences",
"main": "index.js",
"scripts": {
"tag": "GIT_TAG=$(node -e \"console.log('v'+require('./package.json').version)\"); test -z \"$(git tag -l $GIT_TAG)\" && npm i && git add . && git commit -m \"Publish $GIT_TAG\" && git tag $GIT_TAG && echo \"Tagged $GIT_TAG\" || echo \"Tag failed\"",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "esbuild rerecord.js issueRecording.js protocolClient.js --bundle --platform=node --outdir=dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/replayio/action-rerecord.git"
},
"author": "Replay.io",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/replayio/action-rerecord/issues"
},
"homepage": "https://github.com/replayio/action-rerecord#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@replayio/replay": "^0.11.0",
"axios": "^0.26.1"
},
"devDependencies": {
"esbuild": "^0.14.29"
}
}