This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.84 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
59
60
61
62
63
64
65
66
{
"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"
}
}