-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "go-kart",
"version": "0.0.0",
"private": true,
"description": "go-kart GitHub action",
"main": "dist/main/index.js",
"scripts": {
"build": "ncc build --source-map --license licenses.txt -o dist/setup src/setup.ts && ncc build --source-map --license licenses.txt -o dist/main src/main.ts",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conventional-actions/go-kart.git"
},
"homepage": "https://github.com/conventional-actions/go-kart",
"bugs": {
"url": "https://github.com/conventional-actions/go-kart/issues"
},
"keywords": [
"GitHub",
"action",
"gokart"
],
"author": "Conventional Actions",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1",
"@conventional-actions/toolkit": "^1.1.5",
"glob": "^8.0.3"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/node": "^18.11.18",
"@typescript-eslint/parser": "^5.48.1",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.31.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.3.1",
"js-yaml": "^4.1.0",
"prettier": "^2.8.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}