-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 849 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 849 Bytes
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
{
"name": "setup-cue",
"version": "0.0.0",
"description": "Install CUE on your runner using Github Actions",
"main": "dist/index.js",
"scripts": {
"build": "tsc --outDir ./lib --rootDir ./src",
"test": "jest",
"test-coverage": "jest --coverage",
"dist": "ncc build src/run.ts --license LICENSE"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cue-lang/setup-cue.git"
},
"keywords": [
"eks"
],
"author": "cbrgm",
"license": "Apache 2.0",
"devDependencies": {
"@types/jest": "27.5.2",
"@types/node": "20.11.10",
"@types/semver": "7.3.13",
"@vercel/ncc": "0.33.4",
"jest": "29.0.0",
"ts-jest": "29.1.2",
"typescript": "5.3.3"
},
"dependencies": {
"@actions/core": "1.10.0",
"@actions/exec": "1.1.1",
"@actions/tool-cache": "1.7.2"
}
}