-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
44 lines (44 loc) · 1.12 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": "roam-research-private-api",
"version": "0.9.3",
"description": "Library that loads your Roam Research graph as a browser and performs tasks as you.",
"homepage": "https://deliber.at/roam/roam-api/",
"keywords": [
"roam",
"roam-research",
"evernote",
"puppeteer"
],
"main": "RoamPrivateApi.js",
"repository": {
"type": "git",
"url": "https://github.com/artpi/roam-research-private-api"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"evernote_sync": "node examples/sync_evernote.js",
"reformat-files": "./node_modules/.bin/prettier --ignore-path .eslintignore --write \"**/*.{js,jsx,json,ts,tsx}\""
},
"bin": {
"roam-api": "examples/cmd.js",
"roam-evernote-sync": "examples/sync_evernote.js"
},
"author": "Artur Piszek ( piszek.com )",
"license": "MIT",
"dependencies": {
"enml-js": "^0.1.3",
"evernote": "^2.0.5",
"moment": "^2.27.0",
"node-fetch": "^2.6.1",
"node-unzip-2": "^0.2.8",
"puppeteer": "^5.5.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"prettier": "npm:[email protected]"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
}
}