-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 KB
/
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": "install-appmap-action",
"version": "1.0.0",
"author": "AppLand, Inc",
"license": "MIT",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"appmap": "appmap-agent-js -- jest --no-cache",
"clean": "rm -rf build dist tmp",
"format": "prettier --write '**/*.ts'",
"package": "yarn build && ncc build --source-map --license licenses.txt"
},
"devDependencies": {
"@appland/appmap-agent-js": "^14.2.0",
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.15.11",
"@types/node-fetch": "^2.6.3",
"@vercel/ncc": "^0.36.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@actions/artifact": "^1.1.1",
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@appland/action-utils": "https://github.com/getappmap/action-utils",
"@types/argparse": "^2.0.10",
"@types/yaml": "^1.9.7",
"argparse": "^2.0.1",
"js-yaml": "^4.1.0",
"node-fetch": "^2",
"yaml": "^2.2.1"
},
"engines": {
"node": ">=16.0.0"
}
}