-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 972 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
{
"name": "notion-export-cleaner",
"version": "1.0.3-rc.1",
"description": "A command line utility to clean up the Markdown exports of Notion.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest",
"lint": "eslint . --ext .js",
"lint-fix": "eslint --fix . --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebastianwilczek/notion-export-cleaner.git"
},
"keywords": [
"notion",
"markdown",
"export"
],
"author": "Sebastian Wilczek",
"license": "MIT",
"bugs": {
"url": "https://github.com/sebastianwilczek/notion-export-cleaner/issues"
},
"homepage": "https://github.com/sebastianwilczek/notion-export-cleaner#readme",
"dependencies": {
"csv-parser": "^3.0.0"
},
"devDependencies": {
"eslint": "^8.50.0",
"jest": "^29.7.0"
},
"bin": {
"notion-export-cleaner": "./index.js",
"nec": "./index.js"
},
"preferGlobal": true
}