-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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
{
"name": "scalafmt-action",
"version": "3.0.0-beta.1",
"description": "GitHub Action for checking Scala source files are correctly formatted using scalafmt",
"private": true,
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts",
"prettier": "prettier --write .",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src tests"
},
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.2.6",
"cli-progress": "^3.9.0",
"node-fetch": "^3.3.0",
"semver": "^7.3.8"
},
"devDependencies": {
"@actions/github": "^5.0.0",
"@tsconfig/node16": "^1.0.3",
"@types/cli-progress": "^3.9.1",
"@types/jest": "^29.4.0",
"@types/node": "^16.18.12",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^29.4.3",
"prettier": "^2.5.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}