forked from tryfabric/martian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 964 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
39
40
41
{
"name": "@instantish/martian",
"version": "1.0.3",
"description": "Converts Markdown to Notion Blocks and RichText",
"repository": "https://github.com/instantish/martian",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"test": "jest",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"keywords": [
"markdown",
"notion",
"parser",
"gfm"
],
"author": "Richard Robinson",
"license": "ISC",
"dependencies": {
"@notionhq/client": "^0.1.9",
"remark-gfm": "^1.0.0",
"remark-parse": "^9.0.0",
"unified": "^9.2.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"gts": "^3.1.0",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}