generated from pabio/github-actions-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.56 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
56
57
58
59
60
61
62
63
64
65
{
"name": "color-labels-action",
"version": "1.0.0",
"description": "GitHub Action to add some color to issue labels",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnandChowdhary/color-labels-action.git"
},
"keywords": [
"github",
"github actions",
"nodejs",
"typescript",
"starter"
],
"author": "Anand Chowdhary <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AnandChowdhary/color-labels-action/issues"
},
"homepage": "https://github.com/AnandChowdhary/color-labels-action#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@types/jest": "^29.1.2",
"@types/randomcolor": "^0.5.6",
"@vercel/ncc": "^0.34.0",
"jest": "^29.1.2",
"semantic-release": "^19.0.5",
"semantic-release-gitmoji": "^1.4.5",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@koj/config": "^1.2.11",
"randomcolor": "^0.6.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/src/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"automock": false
}
}