-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2 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
{
"name": "contribution-streak-maintainer",
"description": "Automatically maintain your GitHub contribution streak",
"version": "1.0.22",
"author": "Elias Afara <afaraelias@gmail.com>",
"type": "commonjs",
"bin": {
"contribution-streak-maintainer": "dist/main.js"
},
"scripts": {
"start": "tsc --watch",
"tsc": "tsc",
"build": "npm run tsc",
"ci-test": "jest",
"test": "jest"
},
"keywords": [
"GitHub Actions",
"GitHub Workflow",
"GitHub Contributions",
"Contribution Streak",
"Automation",
"Node.js",
"NPM Package",
"Continuous Integration",
"Developer Tools",
"Daily Contributions",
"Daily Commits",
"Open Source",
"TypeScript",
"Jest"
],
"files": [
"dist"
],
"homepage": "https://github.com/devful/contribution-streak-maintainer",
"repository": {
"type": "git",
"url": "git+https://github.com/devful/contribution-streak-maintainer.git"
},
"bugs": {
"url": "https://github.com/devful/contribution-streak-maintainer/issues"
},
"license": "MIT",
"jest": {
"preset": "ts-jest",
"verbose": true,
"clearMocks": true,
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
]
},
"dependencies": {
"@octokit/plugin-retry": "^6.0.1",
"@octokit/plugin-throttling": "^8.1.2",
"@types/fs-extra": "^11.0.4",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"minimist": "^1.2.8",
"octokit": "^3.1.1"
},
"devDependencies": {
"@octokit/graphql-schema": "^14.41.0",
"@types/jest": "^29.5.8",
"@types/minimist": "^1.2.5",
"@types/node": "^20.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}