-
-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathpackage.json
52 lines (52 loc) · 1.19 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
{
"name": "notion-to-md",
"version": "3.1.5",
"engines": {
"node": ">=12"
},
"main": "./build",
"types": "./build/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"prebuild": "npm run clean",
"clean": "rm -rf ./build",
"test": "jest",
"test:watch": "jest -w"
},
"keywords": [
"notion",
"markdown",
"md",
"notion",
"notion-api",
"notion-to-md",
"notion2md"
],
"author": "Souvik Kar Mahapatra <souvikat001+chitchat@gmail.com>",
"license": "ISC",
"files": [
"build/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/souvikinator/notion-to-md.git"
},
"bugs": {
"url": "https://github.com/souvikinator/notion-to-md/issues"
},
"homepage": "https://github.com/souvikinator/notion-to-md#readme",
"description": "convert notion pages, block and list of blocks to markdown (supports nesting)",
"devDependencies": {
"@notionhq/client": "^2.2.15",
"@types/jest": "^27.4.1",
"@types/markdown-table": "^2.0.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4"
},
"dependencies": {
"markdown-table": "^2.0.0",
"node-fetch": "2"
}
}