-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.5 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
54
55
{
"name": "core3-action-template",
"version": "0.0.1",
"private": true,
"description": "Core3 github action template",
"main": "lib/main.js",
"scripts": {
"clean": "rimraf lib dist",
"prebuild": "npm run clean",
"build": "npm run build:ts && npm run bundle",
"build:ts": "tsc -p tsconfig.build.json",
"bundle": "ncc build --source-map --license licenses.txt",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"pretest": "npm run typecheck && npm run lint",
"test": "mocha \"test/**/*.test.ts\"",
"prettify": "npx prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wixplosives/core3-action-template.git"
},
"keywords": [
"actions",
"node",
"github",
"template"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/core": "^6.1.2"
},
"devDependencies": {
"@ts-tools/node": "^6.0.0",
"@types/chai": "^4.3.19",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.3",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-no-only-tests": "^3.3.0",
"mocha": "^10.8.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
}
}