-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"name": "archiver-for-google-keep",
"version": "0.0.4",
"description": "Scrapes notes and checklists from Google Keep™ and writes them out as JSON and markdown archive/backup files. This tool is not affiliated or endorsed by Google™. Google Keep™ is a trademark of Google.",
"main": "keep.js",
"bin": {
"keep-archiver": "./cli.js"
},
"scripts": {
"start": "node keep.js",
"test": "npx mocha test/**.spec.js",
"build": "bash build.sh",
"test:build": "npm run build && cp -r test build/ && cd build && npm test && rm -rf test"
},
"keywords": [
"google keep",
"keep",
"archive",
"backup",
"scrape",
"webdriverio"
],
"author": "James Mortensen",
"license": "MIT",
"homepage": "https://github.com/jamesmortensen/archiver-for-google-keep/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/jamesmortensen/archiver-for-google-keep.git"
},
"bugs": {
"url": "https://github.com/jamesmortensen/archiver-for-google-keep/issues"
},
"dependencies": {
"argumently": "^0.0.2",
"filesystem-timestamp-modifier": "^0.0.2",
"prompt": "^1.3.0",
"webdriverio": "^8.0.9"
},
"devDependencies": {
"chai": "^4.3.7",
"mocha": "^10.1.0",
"uglify-js": "^3.17.4"
}
}