forked from dlang-community/setup-dlang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 810 Bytes
/
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
{
"name": "setup-dlang",
"version": "1.2.0",
"private": false,
"description": "GitHub Action for setting up a @dlang CI environment",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts --source-map -o dist --minify --target es2017"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dlang-community/setup-dlang.git"
},
"keywords": [
"actions",
"dlang",
"setup"
],
"author": "Mihails Strasuns",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.1",
"promisify-child-process": "^3.1.4",
"typed-rest-client": "^1.8.4"
},
"devDependencies": {
"@types/node": "^14.18.28",
"@vercel/ncc": "^0.27.0",
"typescript": "^4.3.2"
}
}