generated from vrerv/node-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.64 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
{
"name": "@vrerv/md-to-notion",
"version": "0.5.0",
"description": "An upload of markdown files to a hierarchy of Notion pages.",
"engines": {
"node": ">=15"
},
"homepage": "https://vrerv.com",
"bugs": {
"url": "https://github.com/vrerv/md-to-notion/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/vrerv/md-to-notion/"
},
"keywords": [
"notion",
"markdown",
"cli",
"notion-api",
"block"
],
"main": "./build/src",
"types": "./build/src/index.d.ts",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run && npm run lint && npm run test",
"build": "tsc",
"prettier": "prettier --write .",
"lint": "prettier --check . && eslint . --ext .ts && cspell '**/*' ",
"test": "jest",
"check-links": "git ls-files | grep md$ | xargs -n 1 markdown-link-check",
"prebuild": "npm run clean",
"postbuild": "chmod +x build/src/md-to-notion-cli.js",
"clean": "rm -rf ./build"
},
"bin": {
"md-to-notion": "./build/src/md-to-notion-cli.js"
},
"author": "Soonoh Jung",
"license": "MIT",
"files": [
"build/package.json",
"build/src/**"
],
"dependencies": {
"@notionhq/client": "^2.2.3",
"@tryfabric/martian": "^1.2.4",
"commander": "^12.1.0",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@types/jest": "^29.5.12",
"cspell": "^5.4.1",
"eslint": "^7.24.0",
"jest": "^29.7.0",
"markdown-link-check": "^3.8.7",
"prettier": "^2.8.8",
"ts-jest": "^29.2.5",
"typescript": "^4.8.4"
}
}