-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "cake-action",
"version": "2.0.0",
"private": true,
"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 -o dist",
"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.9.1",
"@actions/exec": "^1.0.1",
"@actions/http-client": "^2.0.1",
"@actions/io": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/jest-when": "^3.5.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@vercel/ncc": "^0.34.0",
"coveralls": "^3.1.1",
"del": "^6.1.1",
"eslint": "^8.25.0",
"eslint-plugin-jest": "^27.1.2",
"jest": "^29.2.0",
"jest-when": "^3.5.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}