-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
50 lines (50 loc) · 1.14 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
{
"name": "@tryfabric/martian",
"version": "1.2.4",
"description": "Converts Markdown to Notion Blocks and RichText",
"repository": "https://github.com/tryfabric/martian",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"test": "jest",
"lint": "gts lint",
"clean": "gts clean",
"precompile": "ts-node scripts/languageMap.ts",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"keywords": [
"markdown",
"notion",
"parser",
"gfm"
],
"engines": {
"node": ">=15"
},
"author": "Richard Robinson",
"license": "ISC",
"dependencies": {
"@notionhq/client": "^1.0.4",
"remark-gfm": "^1.0.0",
"remark-math": "^4.0.0",
"remark-parse": "^9.0.0",
"unified": "^9.2.1"
},
"devDependencies": {
"@types/jest": "^27",
"@types/node": "^15.12.4",
"gts": "^3.1.0",
"jest": "^27.0.4",
"linguist-languages": "^7.15.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"publishConfig": {
"access": "public"
}
}