-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.57 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.57 KB
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
{
"name": "total-unique-active-developers-across-github-instances",
"version": "1.0.0",
"description": "A script which will return the total number of unique de-deuped active committers across multiple GHES instances",
"engines": {
"node": "20"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/jest": "~29.5",
"@types/mock-fs": "^4.13.4",
"@types/node": "~20",
"@types/papaparse": "^5.3.14",
"@typescript-eslint/eslint-plugin": "~7.4",
"@typescript-eslint/parser": "~7.4",
"eslint": "~8.57",
"eslint-config-prettier": "~9.1",
"eslint-plugin-jest": "~27.9",
"jest": "~29.7",
"prettier": "~3.2",
"rimraf": "~5.0",
"ts-jest": "~29.1",
"tsutils": "~3.21",
"typescript": "~5.4"
},
"scripts": {
"start": "npm run build && node lib/src/main.js",
"email": "npm run build && node lib/src/main-email-dedup.js",
"clean": "rimraf coverage lib tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch"
},
"author": "Nick Liffen <nickliffen@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.5",
"fast-csv": "^5.0.1",
"install": "^0.13.0",
"js-yaml": "^4.1.0",
"mock-fs": "^5.2.0",
"npm": "^10.9.2",
"papaparse": "^5.4.1",
"tslib": "~2.6"
}
}