-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "codelimit-action",
"version": "1.0.0",
"description": "",
"main": "action.js",
"scripts": {
"prepare": "node src/generate-versionjs.js > src/version.ts",
"build": "tsc",
"start": "yarn build && node ./build/action.js",
"dist": "yarn build && esbuild build/action.js --bundle --platform=node --outfile=dist/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getcodelimit/codelimit-action.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/getcodelimit/codelimit-action/issues"
},
"homepage": "https://github.com/getcodelimit/codelimit-action#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.0",
"@types/node-fetch": "^2.6.12",
"@types/signale": "^1.4.7",
"esbuild": "^0.24.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@octokit/action": "^6.0.5",
"badge-maker": "^4.1.0",
"node-fetch": "^2.6.13",
"signale": "^1.4.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
}
}
}