forked from theoephraim/node-google-spreadsheet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 961 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
{
"author": "Theo Ephraim <[email protected]> (http://theoephraim.com)",
"name": "google-spreadsheet",
"description": "Google Spreadsheets Data API -- simple interface to read/write rows/cells, manage sheets",
"version": "2.0.4",
"license": "Unlicense",
"keywords": [
"google spreadsheets",
"google",
"spreadsheet",
"spreadsheets",
"sheets",
"gdata",
"api",
"google sheets"
],
"homepage": "https://github.com/theoephraim/node-google-spreadsheet",
"repository": {
"type": "git",
"url": "git://github.com/theoephraim/node-google-spreadsheet.git"
},
"main": "index.js",
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"async": "^1.3.0",
"google-auth-library": "^0.9.6",
"lodash": "^3.7.0",
"request": "^2.69.0",
"xml2js": "~0.4.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5"
},
"scripts": {
"test": "node_modules/.bin/mocha"
}
}