-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"name": "github-profile-card",
"version": "3.2.0",
"description": "Widget for presenting your GitHub profile on your website. Pure JavaScript.",
"main": "dist/gh-profile-card.min.js",
"type": "module",
"devDependencies": {
"@eslint/js": "9.31.0",
"@jest/globals": "30.0.4",
"eslint": "9.31.0",
"eslint-plugin-jest": "28.8.3",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-prettier": "5.5.1",
"jest": "30.0.4",
"jest-environment-jsdom": "30.0.4",
"prettier": "3.6.2",
"sass": "1.25.0",
"ts-jest": "29.4.0",
"typescript": "5.8.3",
"typescript-eslint": "8.36.0",
"esbuild": "0.25.1",
"esbuild-sass-plugin": "3.3.1"
},
"scripts": {
"build": "node build.js",
"build:check": "npm run build && npm run lint && npm run format:check && npm run test",
"lint": "eslint .",
"format": "prettier --write {*,src/*,demo/*}",
"format:check": "prettier --check {*,src/*,demo/*}",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/piotrl/github-profile-card.git"
},
"keywords": [
"github",
"widget",
"vanilla",
"javascript",
"browser"
],
"author": "Piotr Lewandowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/piotrl/github-profile-card/issues"
},
"homepage": "https://piotrl.github.io/github-profile-card/"
}