-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "cake-action",
"version": "3.0.0",
"private": true,
"type": "commonjs",
"description": "Run a Cake script from your GitHub Actions workflow.",
"main": "dist/index.js",
"scripts": {
"build": "npm run lint && npm run transpile && npm run bundle",
"test": "jest",
"lint": "eslint **/*.ts",
"transpile": "tsc",
"bundle": "ncc build src/main.ts --out dist --minify",
"coveralls": "jest && cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cake-build/cake-action.git"
},
"keywords": [
"github-actions",
"actions",
"cake-build"
],
"author": "Enrico Campidoglio",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.2.3",
"@actions/io": "^1.1.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@types/jest": "^29.5.14",
"@types/jest-when": "^3.5.5",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vercel/ncc": "^0.38.3",
"coveralls": "^3.1.1",
"del": "^6.1.1",
"eslint": "^9.19.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-when": "^3.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}