-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 776 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 776 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
{
"name": "create-deployment",
"version": "1.0.0",
"description": "Create a Deployment via GitHub Deployments API",
"homepage": "https://github.com/abendigo/create-deployment#readme",
"bugs": "https://github.com/abendigo/create-deployment/issues",
"license": "MIT",
"main": "index.js",
"repository": "github:abendigo/create-deployment",
"author": "Mark Oosterveld",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js && jest"
},
"dependencies": {
"@actions/core": "^1.2.0",
"@actions/github": "^1.1.0"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"jest": "^24.9.0",
"prettier": "^1.19.1"
}
}