-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 KB
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
{
"name": "@jordancoin/notioncli",
"version": "1.5.0",
"description": "A powerful CLI for the Notion API — query databases, manage pages, and automate your workspace from the terminal.",
"main": "bin/notion.js",
"bin": {
"notion": "./bin/notion.js"
},
"scripts": {
"test": "node --test test/unit.test.js test/mock.test.js",
"test:coverage": "c8 --reporter=lcov --reporter=text node --test test/unit.test.js test/mock.test.js",
"test:live": "node --test test/integration.test.js",
"test:all": "node --test test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JordanCoin/notioncli.git"
},
"keywords": [
"notion",
"cli",
"api",
"database",
"productivity",
"workspace",
"automation"
],
"author": "JordanCoin",
"license": "MIT",
"bugs": {
"url": "https://github.com/JordanCoin/notioncli/issues"
},
"homepage": "https://github.com/JordanCoin/notioncli#readme",
"devDependencies": {
"c8": "^10.1.3"
},
"dependencies": {
"@notionhq/client": "^5.9.0",
"commander": "^14.0.3"
},
"engines": {
"node": ">=18"
}
}