-
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) · 918 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 918 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": "flyscrape-action",
"version": "1.1.0",
"description": "Github action to execute flyscrape scripts",
"main": "src/index.ts",
"scripts": {
"build": "ncc build src/index.ts -o dist --source-map --minify --license licenses.txt",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest"
},
"repository": {
"type": "git",
"url": "github.com/mrflynn/flyscrape-action"
},
"author": "Nick Pleatsikas",
"license": "MIT",
"devDependencies": {
"@octokit/openapi-types": "^20.0.0",
"@types/node": "^20.11.24",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"ts-deep-pick": "^0.2.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/request-error": "^6.1.5",
"decompress": "^4.2.1",
"semver": "^7.6.0"
}
}