-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
34 lines (34 loc) · 880 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
{
"name": "notion-backup",
"version": "1.4.1",
"description": "Notion exporter meant to be used as part of a GitHub workflow",
"main": "./notion-backup.js",
"bin": {
"notion-backup": "./notion-backup.js",
"notion-backup-item": "./notion-backup-item.js"
},
"repository": {
"type": "git",
"url": "https://github.com/darobin/notion-backup.git"
},
"eslintConfig": {
"extends": "robin"
},
"author": "Robin Berjon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/darobin/notion-backup/issues"
},
"homepage": "https://github.com/darobin/notion-backup",
"devDependencies": {
"eslint-config-robin": "^6.1.3"
},
"dependencies": {
"async": "^3.2.4",
"axios": "^0.21.1",
"commander": "^7.2.0",
"extract-zip": "^2.0.1",
"notion-client": "^4.5.2",
"notion-utils": "^4.5.2"
}
}