-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "notion-backups",
"version": "1.0.0",
"description": "Blazingly fast asynchronous, multi-user, multi-space Notion backups",
"main": "source/notion-backups.js",
"keywords": [
"cli-app",
"cli",
"ghactions",
"notion",
"backup",
"github",
"markdown",
"html",
"async"
],
"bin": {
"notion-backups": "source/notion-backups.js"
},
"scripts": {
"test": "echo \"No test specified\""
},
"files": [
"source"
],
"repository": {
"type": "git",
"url": "https://github.com/methylDragon/notion-backups.git"
},
"eslintConfig": {
"extends": "robin"
},
"author": "methylDragon <[email protected]>",
"contributors": [
"Robin Berjon <[email protected]> (https://github.com/darobin/notion-backup)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/methylDragon/notion-backups/issues"
},
"homepage": "https://github.com/methylDragon/notion-backups",
"devDependencies": {
"eslint-config-robin": "^6.1.3"
},
"dependencies": {
"async": "^3.2.0",
"axios": "^0.21.1",
"commander": "^7.2.0",
"extract-zip": "^2.0.1",
"notion-client": "^4.5.2",
"notion-utils": "^4.5.2"
}
}