forked from mathieudutour/gatsby-digital-garden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 829 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": "fetch-roamresearch",
"version": "0.1.3",
"description": "Download a Roam Research database",
"main": "lib/index.js",
"scripts": {
"build": "npm run clean && ../../node_modules/.bin/tsc -p ./tsconfig.json",
"watch": "npm run build -- --watch",
"clean": "rm -rf lib",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"download",
"roam",
"roamresearch"
],
"files": [
"lib"
],
"author": "Mathieu Dutour <[email protected]>",
"repository": {
"url": "https://github.com/mathieudutour/gatsby-digital-garden",
"directory": "packages/fetch-roamresearch"
},
"license": "MIT",
"dependencies": {
"@types/puppeteer": "^2.1.0",
"jszip": "^3.4.0",
"node-watch": "^0.6.4",
"puppeteer": "^3.0.4"
},
"devDependencies": {}
}