-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 856 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 856 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
{
"name": "nitro-fusion-publish-action",
"version": "1.0.0",
"description": "GitHub Action for publishing GraphQL schemas with ChilliCream Nitro",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js --source-map --license licenses.txt",
"package": "npm run build",
"test": "jest",
"all": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChilliCream/nitro-actions.git"
},
"keywords": [
"github-action",
"graphql",
"nitro",
"chillicream",
"fusion"
],
"author": "ChilliCream",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0"
}
}