-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
53 lines (53 loc) · 1.61 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
{
"name": "jest-badges-action",
"description": "Generates coverage badges and pushes them to the repo",
"version": "1.9.19",
"main": "lib/main.js",
"repository": "https://github.com/jpb06/jest-badges-action.git",
"author": "jpb06 <[email protected]>",
"license": "MIT",
"engines": {
"node": "20.x"
},
"scripts": {
"cleanDist": "rimraf ./dist && rimraf ./lib",
"build": "pnpm cleanDist && tsc --project tsconfig.prod.json && ncc build --minify",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit ",
"test": "jest",
"test-dev": "jest --watchAll --coverage",
"test-ci": "jest --ci --coverage",
"badges": "generateBadges",
"sync-icons": "pnpm generateReadmeIcons -h 50"
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.0",
"fs-extra": "11.2.0",
"node-jest-badges": "1.3.15"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@swc/core": "1.3.101",
"@swc/jest": "0.2.29",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.11",
"@types/node": "20.10.5",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"@vercel/ncc": "0.38.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.6.0",
"eslint-plugin-prettier": "5.1.2",
"jest": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"prettier": "3.1.1",
"readme-package-icons": "1.1.10",
"rimraf": "5.0.5",
"typescript": "5.3.3"
}
}