-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 KB
/
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
34
35
36
37
38
39
40
41
42
43
{
"name": "ghost-post",
"version": "1.0.0",
"description": "GitHub Action for publishing to a Ghost instance",
"main": "lib/main.js",
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"lint": "eslint src/**/*.ts",
"test": "tap",
"clean": "rm -rf dist && rm -rf lib",
"package": "ncc build --source-map --license licenses.txt"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@tryghost/admin-api": "^1.4.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^14.14.9",
"@types/tap": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.8.1",
"@vercel/ncc": "^0.28.4",
"dotenv": "^8.2.0",
"eslint": "^7.17.0",
"eslint-plugin-jest": "^24.3.6",
"js-yaml": "^3.14.0",
"tap": "^15.0.6",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DiscordDungeons/ghost-action.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/DiscordDungeons/ghost-action/issues"
},
"homepage": "https://github.com/DiscordDungeons/ghost-action#readme"
}