-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 KB
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
45
{
"name": "action-deployment-dispatch",
"version": "4.2.0",
"description": "A github action for deployments dispatch to a gitops repo",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint .",
"build": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"test:watch": "jest --watch",
"all": "npm run lint && npm run compile && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prefapp/action-deployment-dispatch.git"
},
"keywords": [
"Github",
"Actions",
"Prefapp",
"Gitops"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/prefapp/action-deployment-dispatch/issues"
},
"homepage": "https://github.com/prefapp/action-deployment-dispatch#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.0",
"js-yaml": "^4.1.0",
"jsonschema": "^1.4.0"
},
"devDependencies": {
"@actions/github": "^6.0.0",
"@eslint-recommended/eslint-config": "^26.1.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.0.0",
"jest": "^29.7.0"
}
}