@yuanqing/google-sheets
Version:
An easier interface to read from and write to Google Sheets
60 lines (59 loc) • 1.41 kB
JSON
{
"name": "@yuanqing/google-sheets",
"version": "0.0.2",
"description": "An easier interface to read from and write to Google Sheets",
"author": "Lim Yuan Qing",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/yuanqing/google-sheets.git"
},
"main": "src/index.js",
"dependencies": {
"google-auth-library": "^4.2.5",
"isomorphic-unfetch": "^3.0.0"
},
"devDependencies": {
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"localenv": "^0.2.2",
"nanoid": "^2.0.3",
"nyc": "^14.1.1",
"prettier-standard": "^9.1.1",
"rimraf": "^2.6.3",
"standard": "^13.0.2",
"tape": "^4.11.0"
},
"scripts": {
"clean": "rimraf '*.log' .nyc_output coverage",
"coverage": "rimraf .nyc_output coverage && nyc --reporter=html --reporter=lcov --reporter=text -- tape --require localenv 'src/**/__tests__/*.js'",
"fix": "prettier-standard 'src/**/*.js'",
"lint": "standard 'src/**/*.js'",
"test": "tape --require localenv 'src/**/__tests__/*.js'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"standard",
"git add"
]
},
"files": [
"src"
],
"keywords": [
"api",
"google",
"google-api",
"google-sheet",
"google-sheets",
"google-spreadsheet",
"google-spreadsheets",
"sheet",
"spreadsheet"
]
}