-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.84 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
{
"name": "github-profile-summary-cards",
"version": "0.7.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 src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --passWithNoTests --reporters=default --reporters=jest-junit --coverage",
"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 <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.0",
"axios": "^0.28.0",
"childprocess": "^2.0.2",
"d3": "^6.7.0",
"dotenv": "^8.2.0",
"jest-junit": "^14.0.0",
"js-abbreviation-number": "^1.4.0",
"jsdom": "^16.4.0",
"moment": "^2.29.4",
"retry-axios": "^2.6.0"
},
"devDependencies": {
"@types/d3": "^6.7.0",
"@types/jest": "^27.0.2",
"@types/jsdom": "^16.2.13",
"@types/node": "^20.12.7",
"@typescript-eslint/parser": "^5.2.0",
"@vercel/ncc": "^0.38.1",
"@vercel/node": "^1.12.1",
"axios-mock-adapter": "^1.18.2",
"eslint": "^7.22.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.4.7",
"pre-commit": "^1.2.2",
"prettier": "2.2.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"pre-commit": [
"test",
"lint"
]
}