-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "pr-stats",
"version": "1.0.0",
"engines": {
"node": ">=16.0.0"
},
"description": "",
"main": "src/index.ts",
"scripts": {
"build": "ncc build src/index.ts -o dist",
"test": "mocha -r ts-node/register -r tsconfig-paths/register 'src/**/*.test.ts'",
"lint:fix": "eslint --fix --ext .js,.ts .",
"prettier": "npx prettier --write **/*.{js,ts}",
"types": "tsc"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/plugin-throttling": "^7.0.0",
"papaparse": "^5.4.1"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.0",
"@types/papaparse": "^5.3.8",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vercel/ncc": "^0.36.1",
"chai": "^4.3.8",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
}
}