-
Notifications
You must be signed in to change notification settings - Fork 453
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.03 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.03 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
{
"name": "github-profile-summary-cards",
"version": "0.7.1",
"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:local": "ts-node scripts/local-test.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.9.1",
"@actions/github": "^6.0.0",
"axios": "^1.8.2",
"d3": "^6.7.0",
"dotenv": "^8.2.0",
"jest-junit": "^14.0.0",
"js-abbreviation-number": "^1.4.0",
"jsdom": "^16.4.0",
"retry-axios": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@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",
"typescript": "5.4.5"
},
"pre-commit": [
"test",
"lint"
],
"engines": {
"node": "22.x"
}
}