-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 926 Bytes
/
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
{
"name": "wordpress-release-action",
"version": "1.0.0",
"description": "This action builds WF WordPress projects and uploads the zipped artifacts to an AWS S3 Bucket.",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wunderfarm/wordpress-release-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wunderfarm/wordpress-release-action/issues"
},
"homepage": "https://github.com/wunderfarm/wordpress-release-action#readme",
"dependencies": {
"@actions/artifact": "^0.2.0",
"@actions/core": "^1.2.6",
"@actions/github": "^2.2.0",
"aws-sdk": "^2.814.0",
"tweetsodium": "0.0.5"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5",
"eslint": "^8.5.0"
}
}