generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
44 lines (44 loc) · 932 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
37
38
39
40
41
42
43
44
{
"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": "^3.2.3",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@vercel/ncc": "^0.38.1",
"ava": "^6.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}