-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.4 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@jckimble/github-graph-background",
"version": "1.0.4",
"description": "A toy program for getting your GitHub Contributions and creating a background image from it with many themes",
"author": "James C Kimble Jr",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bin": {
"github-graph-background": "cli.js"
},
"pkg": {
"scripts": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jckimble/Github-Graph-Background.git"
},
"bugs": {
"url": "https://github.com/jckimble/Github-Graph-Background/issues"
},
"dependencies": {
"canvas": "^3.0.1",
"commander": "^11.0.0",
"graphql-request": "^5.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^22.0.2",
"depcheck": "^1.4.3",
"husky": "^9.0.11",
"jest": "^29.4.3",
"pinst": "^3.0.0",
"pkg": "^5.8.0",
"prettier": "^3.0.0",
"pretty-quick": "^4.0.0",
"semantic-release": "^24.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"scripts": {
"format": "prettier --write .",
"package": "pkg . --output github-graph-background",
"build": "tsc",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"start": "ts-node src/index.ts",
"test": "jest --coverage --no-cache --runInBand --passWithNoTests"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore: update version [skip ci]"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "examples"
},
{
"path": "github-graph-background"
}
]
}
]
],
"branches": [
"master"
]
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}