-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1019 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
34
35
36
37
38
{
"name": "markdown-to-notion",
"version": "1.0.0",
"description": "Load a Markdown file to a Notion page",
"private": "true",
"scripts": {
"test": "jest",
"build": "ncc build src/index.ts && sed -i 's/\\x0D$//' ./dist/index.js",
"lint": "gts lint src/*",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tryfabric/markdown-to-notion.git"
},
"author": "Fabric",
"license": "MIT",
"bugs": {
"url": "https://github.com/tryfabric/markdown-to-notion/issues"
},
"homepage": "https://github.com/tryfabric/markdown-to-notion#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@notionhq/client": "^1.0.4",
"@tryfabric/martian": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"@vercel/ncc": "^0.33.4",
"gts": "^3.1.0",
"jest": "^27.5.1",
"release-it": "^14.14.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.4.4"
}
}