gsweet
Version:
Help with writing scripts to run against gSuite
67 lines (66 loc) • 1.89 kB
JSON
{
"name": "gsweet",
"version": "2.0.9",
"description": "Help with writing scripts to run against gSuite ",
"repository": {
"type": "git",
"url": "git://github.com/pluralsight/gsweet.git"
},
"main": "./src/main.js",
"types": "gsweet/index.d.ts",
"scripts": {
"test": "mocha --use_strict --reporter list \"src/**/*.test.js\"",
"test:cov": "nyc mocha --use_strict \"src/**/*.test.js\"",
"test:int": "mocha --reporter list \"src/**/*.test.int.js\" ",
"test:all": "nyc run-p 'test -- --forbid-only' 'test:int -- --forbid-only'",
"start": "node --use_strict $npm_package_main",
"lint": "esw src --color",
"lint:watch": "npm run lint -- --watch",
"doc": "jsdoc -c ./jsdoc.config.json src/*.js src/**/*.js ./ReadMe.md",
"audit": "npm audit",
"build:commit": "git commit --all -m 'build commit'",
"build:ver": "npm version patch",
"build:pub": "npm publish",
"build": "npm-run-all --parallel doc lint test --serial build:commit build:ver build:pub",
"build:only": "npm-run-all --serial build:commit build:ver build:pub"
},
"author": "Tod Gentille",
"license": "MIT",
"resolutions": {
"color-string": "1.6.0"
},
"dependencies": {
"env-create": "^1.1.4",
"google-auth-library": "^7.8.0",
"googleapis": "^85.0.0",
"winston": "^3.7.2"
},
"keywords": [
"gsuite",
"gsweet",
"sheet api",
"doc api",
"drive api",
"drive",
"spreadsheet",
"sheet",
"api",
"gsuite helper",
"google office",
"google suite",
"google"
],
"devDependencies": {
"@types/gapi": "^0.0.41",
"@types/node": "^16.7.10",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-watch": "^7.0.0",
"jsdoc": "^3.6.7",
"mocha": "^9.1.1",
"npm-run-all": "4.1",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"tsd-jsdoc": "^2.5.0"
}
}