forked from KyleMayes/install-llvm-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 779 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 779 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
{
"name": "install-llvm-action",
"version": "1.0.0",
"description": "A GitHub Action for downloading and installing LLVM and Clang binaries.",
"author": "Kyle Mayes <kyle@mayeses.com>",
"license": "Apache-2.0",
"main": "dist/index.js",
"scripts": {
"build": "parcel build index.ts",
"test": "ts-node test.ts test"
},
"dependencies": {
"@actions/core": "~1.10.0",
"@actions/exec": "~1.1.1",
"@actions/io": "~1.1.2",
"@actions/tool-cache": "~2.0.1"
},
"devDependencies": {
"@types/node": "~16.11.7",
"parcel": "^2.7.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"targets": {
"main": {
"context": "node",
"engines": {
"node" : "16"
},
"includeNodeModules": true
}
}
}