-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 755 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 755 Bytes
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
{
"name": "replace-keywords-action",
"version": "1.0.1",
"description": "A GitHub Action to replace :compliment: and :insult: in comments",
"author": "Aggelos Bellos",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint **.js",
"format": "prettier --write 'src/**' 'tests/**'",
"format-check": "prettier --check 'src/**' 'tests/**'",
"build": "rm -r dist && ncc build && cp -r src/keywords dist/keywords"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^5.0.0",
"prettier": "^3.3.3"
},
"devDependencies": {
"@vercel/ncc": "^0.38.2",
"eslint": "^9.14.0",
"jest": "^29.7.0"
}
}