-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
60 lines (60 loc) · 1.78 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
52
53
54
55
56
57
58
59
60
{
"name": "@jamesives/github-sponsors-readme-action",
"description": "This GitHub Action will automatically add your GitHub Sponsors to your README. It can be configured in multiple ways allowing you to display and breakdown your sponsors by price tier with fallbacks.",
"author": "James Ives <iam@jamesiv.es> (https://jamesiv.es)",
"version": "1.5.4",
"license": "MIT",
"main": "lib/lib.js",
"types": "lib/lib.d.ts",
"root": true,
"scripts": {
"build": "rm -rf lib && tsc --declaration",
"test": "jest",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"lint:format": "prettier --write .",
"lint:format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamesIves/github-sponsors-readme-action.git"
},
"bugs": {
"url": "https://github.com/JamesIves/github-sponsors-readme-action/issues"
},
"homepage": "https://github.com/JamesIves/github-sponsors-readme-action",
"keywords": [
"github-sponsors",
"sponsors",
"automation",
"tier",
"readme",
"github",
"github-action"
],
"dependencies": {
"@actions/core": "1.11.1",
"@actions/io": "1.1.3",
"@eslint/js": "9.14.0",
"dompurify": "3.1.7",
"jsdom": "25.0.1",
"mustache": "4.2.0",
"typescript-eslint": "8.14.0"
},
"devDependencies": {
"@types/async-retry": "1.4.9",
"@types/jest": "29.5.14",
"@types/mustache": "4.2.5",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"typescript": "5.6.3"
}
}