-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 998 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "gsheets",
"version": "3.0.1",
"description": "Get public Google Spreadsheets as plain JavaScript/JSON",
"keywords": [
"google",
"spreadsheets",
"worksheets",
"sheets",
"json",
"cli"
],
"homepage": "https://github.com/interactivethings/gsheets",
"author": "Jeremy Stucki - Interactive Things",
"contributors": [
{
"name": "Olivier Baumann",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/interactivethings/gsheets.git"
},
"bin": {
"gsheets": "./bin/gsheets"
},
"main": "src/index.js",
"files": [
"src/index.js",
"bin/gsheets"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"shipit": "scripts/publish"
},
"license": "BSD-3-Clause",
"dependencies": {
"d3-dsv": "^1.0.3",
"minimist": "^1.1.0",
"node-fetch": "^2.6.1",
"rw": "^1.3.2"
},
"devDependencies": {
"jest": "^27.0.6"
}
}