-
Notifications
You must be signed in to change notification settings - Fork 503
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.8 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "github-profile-summary-cards",
"version": "0.12.0",
"description": "Generate github profile summary cards",
"main": "lib/app.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint '**/*.ts'",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --passWithNoTests --reporters=default --reporters=jest-junit --coverage",
"test:unit": "jest --passWithNoTests",
"typecheck": "tsc --noEmit -p tsconfig.test.json",
"test:local": "ts-node scripts/local-test.ts",
"test:action": "ts-node scripts/mock-action.ts",
"generate:preview": "ts-node scripts/generate-preview-assets.ts",
"dev": "node --watch -r ts-node/register scripts/dev-server.ts",
"run": "node -r dotenv/config lib/app.js",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"keywords": [
"github"
],
"author": "Casper <vn7n24fzkq@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@sentry/node": "^10.66.0",
"@vercel/functions": "^3.7.5",
"axios": "^1.18.1",
"d3": "^7.9.0",
"dotenv": "^8.2.0",
"jest-junit": "^17.0.0",
"js-abbreviation-number": "^1.4.0",
"jsdom": "^16.4.0",
"retry-axios": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.29.6",
"@babel/preset-env": "^7.28.5",
"@types/d3": "^6.7.0",
"@types/jest": "^30.0.0",
"@types/jsdom": "^16.2.13",
"@types/node": "^25.0.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vercel/ncc": "^0.38.4",
"@vercel/node": "^2.3.0",
"axios-mock-adapter": "^1.18.2",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^30.2.0",
"pre-commit": "^1.0.10",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "5.4.5"
},
"pre-commit": [
"test:unit",
"lint"
],
"overrides": {
"undici": "^6.27.0",
"@tootallnate/once": "^2.0.1",
"js-yaml@^3.0.0": "^3.15.0",
"js-yaml@^4.0.0": "^4.2.0",
"node-fetch@^2.0.0": "^2.6.7",
"path-to-regexp": "^6.3.0",
"esbuild": "^0.25.0",
"cross-spawn": "^7.0.6",
"ajv@^6.0.0": "^6.14.0",
"ajv@^8.0.0": "^8.18.0"
},
"engines": {
"node": "24.x"
}
}