-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 loc) · 1022 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
29
30
31
32
33
34
35
36
37
38
{
"name": "slash-command-action",
"version": "1.0.0",
"private": true,
"description": "Check issue or pull request comments for `/commands` and trigger or block workflows based on them.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"jest": "jest --coverage",
"lint": "tsc --noEmit",
"package": "ncc build src/main.ts --source-map --license license.txt",
"release": "npm run package && git add -f dist/",
"test": "npm run lint && npm run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xt0rted/slash-command-action.git"
},
"keywords": [
"actions"
],
"author": "xt0rted",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@vercel/ncc": "^0.38.3",
"jest": "^29.7.0",
"jest-circus": "^29.6.2",
"nock": "^13.5.6",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}