forked from googleworkspace/apps-script-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.45 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
{
"name": "apps-script-oauth2",
"version": "1.41.0",
"description": "OAuth2 for Apps Script is a library for Google Apps Script that provides the ability to create and authorize OAuth2 tokens as well as refresh them when they expire.",
"repository": {
"type": "git",
"url": "git://github.com/googlesamples/apps-script-oauth2.git"
},
"author": "Eric Koleda <[email protected]>",
"license": "Apache-2.0",
"private": true,
"bugs": {
"url": "https://github.com/googlesamples/apps-script-oauth2/issues"
},
"homepage": "https://github.com/googlesamples/apps-script-oauth2",
"devDependencies": {
"@google/clasp": "2.3.2",
"chai": "4.2.0",
"del": "1.2.1",
"eslint": "4.19.1",
"eslint-config-google": "0.14.0",
"fibers": "5.0.0",
"gas-local": "1.3.1",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"gulp-concat": "2.6.1",
"gulp-contains": "1.2.0",
"gulp-eslint": "4.0.2",
"gulp-expose": "0.0.7",
"gulp-rename": "2.0.0",
"jsdoc": "3.6.4",
"mocha": "9.0.0",
"urlsafe-base64": "1.0.0"
},
"scripts": {
"preversion": "npm test && cd src/ && clasp push",
"version": "npm run dist && npm run doc && git add -A dist docs",
"postversion": "MESSAGE=$(git log -1 --pretty=%B) && cd src/ && clasp version $MESSAGE",
"dist": "gulp dist",
"lint": "gulp lint",
"doc": "jsdoc -c jsdoc.json src/*.js README.md",
"push": "cd src; clasp push",
"test": "mocha"
}
}