This repository has been archived by the owner on Jan 30, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "github-insights",
"version": "1.1.4",
"description": "Get Github Insights, but easy",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "node dist/index.js",
"docs": "npx typedoc",
"release": "npx semantic-release",
"lint": "eslint . --ignore-path ./.gitignore",
"lint:fix": "eslint . --ignore-path ./.gitignore --fix"
},
"author": "Bernd Storath <bernd@kaaaxcreators.de>",
"license": "MIT",
"devDependencies": {
"@kaaaxcreators/config": "^1.1.2",
"@types/base-64": "^1.0.0",
"@types/node": "^17.0.13",
"@types/node-fetch": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.3.2",
"typescript": "^4.4.2"
},
"dependencies": {
"base-64": "^1.0.0",
"node-fetch": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaaax0815/github-insights.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/kaaax0815/github-insights/issues"
},
"funding": {
"type": "individual",
"url": "https://www.buymeacoffee.com/kaaaxcreators"
},
"homepage": "https://kaaax0815.github.io/github-insights/"
}