-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.17 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "spamtoberfest",
"version": "1.1.0",
"description": "List, flag and close pull requests from spammers",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build lib/main.js",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maximelafarie/spamtoberfest.git"
},
"keywords": [
"github",
"actions",
"label",
"hacktoberfest",
"spam",
"PR",
"pull request",
"spamtoberfest"
],
"author": {
"name": "Maxime Lafarie",
"url": "https://maximelafarie.com"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"js-yaml": "^4.1.0",
"minimatch": "^5.1.0",
"semver": "^7.3.8"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^18.11.2",
"@types/semver": "^7.3.12",
"@types/minimatch": "^3.0.0",
"@types/js-yaml": "^3.12.1",
"@vercel/ncc": "^0.34.0",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
}
}