-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"author": "Heitor Tashiro Sergent <[email protected]>",
"name": "google-drive-sheets",
"description": "Google Sheets API -- simple interface to interact with Google Sheets",
"version": "1.3.0",
"keywords": [
"google",
"drive",
"spreadsheet",
"spreadsheets",
"sheets",
"gdata",
"api"
],
"homepage": "https://github.com/heitortsergent/google-drive-sheets",
"repository": {
"type": "git",
"url": "git://github.com/heitortsergent/google-drive-sheets.git"
},
"main": "lib/index.js",
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"async": "^1.3.0",
"dotenv": "^1.2.0",
"google-auth-library": "^0.9.6",
"lodash": "^3.7.0",
"request": "~2.29.0",
"xml2js": "~0.4.0"
},
"devDependencies": {
"async": "*",
"chai": "*",
"coveralls": "*",
"istanbul": "*",
"mocha": "*",
"mocha-lcov-reporter": "*"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./test/*",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*"
}
}