forked from mymindstorm/setup-emsdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 829 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
34
35
36
{
"name": "setup-emsdk",
"version": "1.0.0",
"private": true,
"description": "Github action to download and setup Emscripten",
"main": "dist/index.js",
"scripts": {
"build": "tsc && ncc build lib/main.js --license licenses.txt",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/node12-template.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "mymindstorm",
"license": "MIT",
"dependencies": {
"@actions/cache": "^1.0.7",
"@actions/core": "^1.3.0",
"@actions/exec": "^1.0.4",
"@actions/io": "^1.1.0",
"@actions/tool-cache": "^1.6.1"
},
"devDependencies": {
"@types/node": "^15.6.1",
"@vercel/ncc": "^0.28.6",
"ava": "^3.15.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}