-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.89 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "notion-blogger",
"version": "0.0.1",
"description": "Post blogs to different platforms right from notion itself",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"/build",
"./README.md",
"./LICENSE"
],
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"scripts": {
"test": "echo no tests yet",
"build": "tsc",
"release": "semantic-release",
"prepublishOnly": "npm run build",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Souvikns/Notion-Blogger.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Souvikns/Notion-Blogger/issues"
},
"homepage": "https://github.com/Souvikns/Notion-Blogger#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@notionhq/client": "^0.4.9",
"axios": "^0.24.0",
"commander": "^8.3.0",
"dotenv": "^10.0.0",
"notion-to-md": "^1.0.3"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^27.0.3",
"@vercel/ncc": "^0.33.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"jest": "^27.4.4",
"semantic-release": "^18.0.1",
"ts-jest": "^27.1.1",
"typescript": "^4.5.3"
}
}