forked from gleanwork/open-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 860 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 860 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
34
35
36
37
{
"name": "open-api",
"version": "1.0.0",
"description": "GitHub Action to transform OpenAPI YAML specifications",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "ncc build src/index.js -o dist --source-map",
"test": "vitest run",
"test:all": "npm run build && npm test",
"test:watch": "vitest",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gleanwork/open-api.git"
},
"keywords": [
"github",
"action",
"openapi",
"yaml"
],
"author": "Glean",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/http-client": "^2.1.1",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"vitest": "^1.2.0"
}
}