forked from vn7n24fzkq/github-profile-summary-cards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "github-profile-summary-cards",
"version": "0.2.6",
"description": "Generate github profile summary cards",
"main": "src/app.js",
"scripts": {
"run": "node -r dotenv/config src/app.js",
"build": "ncc build src/app.js",
"lint": "eslint src/",
"test": "jest --passWithNoTests "
},
"type": "commonjs",
"keywords": [
"github"
],
"author": "vn7 <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"axios": "^0.21.2",
"childprocess": "^2.0.2",
"d3": "^5.16.0",
"dotenv": "^8.2.0",
"jsdom": "^16.4.0",
"moment": "^2.27.0",
"number-abbreviate": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/node": "^7.13.12",
"@babel/preset-env": "^7.13.12",
"@vercel/ncc": "^0.27.0",
"axios-mock-adapter": "^1.18.2",
"eslint": "^7.22.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.4.2",
"pre-commit": "^1.2.2",
"prettier": "2.2.1",
"regenerator-runtime": "^0.13.7"
},
"pre-commit": [
"test",
"lint"
]
}