-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.31 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
{
"name": "dagster-cloud-cicd-action",
"version": "0.010",
"description": "Builds and pushes Dagster repo Docker images and updates the corresponding Dagster Cloud repo locations.",
"scripts": {
"lint": "eslint . -c .eslintrc.js",
"prepare": "ncc build src/deploy-action.js -o dist/deploy --source-map --license licenses.txt && ncc build src/preview-action.js -o dist/preview --source-map --license licenses.txt && ncc build src/update-only-action.js -o dist/update-only --source-map --license licenses.txt",
"test": "jest",
"all": "yarn lint && yarn prepare && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/javascript-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "Dagster",
"license": "Apache",
"bugs": {
"url": "https://github.com/dagster-io/dagster-cloud-cicd-action/issues"
},
"homepage": "https://github.com/dagster-io/dagster-cloud-cicd-action/issues#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.1.1",
"graphql": "^16.8.1",
"graphql-request": "^4.0.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@vercel/ncc": "^0.31.1",
"eslint": "^8.39.0",
"jest": "^29.5.0"
},
"packageManager": "[email protected]"
}