forked from urbancups/node-sheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "node-sheets",
"version": "1.1.0",
"description": "Utility Wrapper for Google Spreadsheets",
"author": "Carlos Guedes <carlos@cupsworks.com> (https://cupsworks.com)",
"contributors": [
"Michael DeRazon"
],
"keywords": [
"google-spreadsheet",
"tabular-data",
"sheet",
"spreadsheet"
],
"homepage": "https://github.com/urbancups/node-sheets",
"bugs": {
"url": "https://github.com/urbancups/node-sheets/issues"
},
"scripts": {
"compile": "babel -d lib/ src/",
"prepare": "npm run compile",
"dev": "nodemon -e js -w src/ -x 'babel-node src/index.js'",
"test": "npm run test:prettier && npm run compile && mocha --require @babel/register --slow 5000",
"test:watch": "npm test -- -w",
"test:prettier": "npx prettier --list-different '**/*.{js, md}'",
"fix:prettier": "npx prettier --write '**/*.{js, md}'"
},
"main": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/urbancups/node-sheets.git"
},
"files": [
"src",
"lib"
],
"dependencies": {
"babel-runtime": "^6.26.0",
"google-auth-library": "^5.5.1",
"googleapis": "^45.0.0",
"lodash.zipobject": "^4.1.3",
"q": "^1.5.1"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.0",
"@babel/node": "^7.7.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"babel-loader": "^8.0.6",
"mocha": "^6.2.2",
"nodemon": "^1.19.4",
"prettier": "^1.18.2",
"webpack": "^4"
}
}