-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.59 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.2.0",
"description": "Utility Wrapper for Google Spreadsheets",
"author": "Carlos Guedes <[email protected]> (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": "^6.1.6",
"googleapis": "^67.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": "^8.2.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"webpack": "^5.20.1"
}
}