-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 789 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 789 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
{
"name": "action-deploy-theme",
"version": "1.6.6",
"repository": "git@github.com:TryGhost/action-deploy-theme.git",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "ncc build",
"lint": "eslint . --ignore-pattern dist --ext .js --cache",
"preship": "yarn build && yarn lint",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn version && git push --follow-tags; fi"
},
"files": [
"index.js",
"lib"
],
"devDependencies": {
"eslint": "8.57.0",
"eslint-plugin-ghost": "3.5.0"
},
"dependencies": {
"@actions/core": "3.0.1",
"@actions/exec": "3.0.0",
"@tryghost/admin-api": "1.14.7",
"@vercel/ncc": "^0.38.0",
"slug": "^11.0.0"
}
}