-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 925 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 925 Bytes
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
{
"name": "github-actions-statistics",
"version": "0.0.1",
"main": "index.ts",
"repository": "git@github.com:acidtango/github-actions-statistics.git",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"start:dev": "ts-node index.ts",
"build": "tsc",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint . --fix"
},
"engines": {
"node": "^16.13.0",
"yarn": "~1.22.5"
},
"dependencies": {
"@octokit/rest": "18.6.3",
"command-line-args": "5.2.0"
},
"devDependencies": {
"@types/command-line-args": "5.2.0",
"@types/node": "15.3.1",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.4.1",
"ts-node": "10.2.1",
"typescript": "4.4.3"
}
}