-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 731 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 731 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": "action-update-posts",
"version": "0.0.4",
"repository": "git@github.com:TryGhost/action-update-posts.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": {
"@zeit/ncc": "0.22.3",
"eslint": "7.3.1",
"eslint-plugin-ghost": "1.5.0"
},
"dependencies": {
"@actions/core": "1.2.4",
"@tryghost/admin-api": "1.2.0"
}
}