-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1010 Bytes
/
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
{
"name": "action-comment",
"version": "0.2.0",
"description": "Comment on PRs with results of an Replay automated test run",
"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 comment.js --bundle --platform=node --outdir=dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/replayio/action-comment.git"
},
"author": "Replay.io",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/replayio/action-comment/issues"
},
"homepage": "https://github.com/replayio/action-comment#readme",
"devDependencies": {
"esbuild": "^0.14.45"
},
"dependencies": {
"@formatjs/intl": "^2.3.0",
"dedent": "^0.7.0",
"node-fetch": "^2.6.7"
}
}