-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.35 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
{
"name": "ghtivity",
"version": "1.0.1",
"description": "A command-line tool for displaying the activity in GitHub repositories in a certain time frame.",
"keywords": [
"github",
"activity",
"cli"
],
"bugs": "https://github.com/tweaselORG/ghtivity/issues",
"repository": {
"type": "git",
"url": "https://github.com/tweaselORG/ghtivity.git"
},
"license": "MIT",
"author": "Benjamin Altpeter <hi@bn.al>",
"type": "module",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"bin": "./dist/index.js",
"files": [
"/dist"
],
"scripts": {
"build": "parcel build",
"fix": "yarn eslint . --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx --fix",
"lint": "tsc && eslint . --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx && git diff --check",
"prepack": "rm -rf dist && yarn build",
"test": "echo 'TODO: No tests specified yet.'",
"watch": "parcel watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx,css,scss,json}": [
"prettier --write"
],
"*.{ts,js,tsx,jsx}": [
"eslint --fix"
]
},
"prettier": "@baltpeter/prettier-config",
"dependencies": {
"chalk": "^5.3.0",
"octokit": "^3.1.0",
"terminal-link": "^3.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@baltpeter/eslint-config": "2.1.2",
"@baltpeter/prettier-config": "2.0.0",
"@baltpeter/tsconfig": "3.0.0",
"@parcel/packager-ts": "2.9.3",
"@parcel/transformer-typescript-types": "2.9.3",
"@types/node": "^20.4.5",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "5.60.1",
"eslint": "8.43.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"husky": "4.3.7",
"lint-staged": "13.2.3",
"parcel": "2.9.3",
"prettier": "2.8.8",
"typescript": "5.1.6"
},
"engines": {
"node": ">=14"
},
"targets": {
"bin": {
"source": "src/index.ts",
"context": "node",
"outputFormat": "esmodule",
"optimize": false
}
}
}