forked from googleworkspace/apps-script-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.33 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
{
"name": "apps-script-oauth2",
"version": "1.25.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",
"bugs": {
"url": "https://github.com/googlesamples/apps-script-oauth2/issues"
},
"homepage": "https://github.com/googlesamples/apps-script-oauth2",
"devDependencies": {
"@google/clasp": "^1.1.5",
"chai": "^4.1.2",
"del": "^1.2.1",
"eslint": "^4.17.0",
"eslint-config-google": "^0.9.1",
"fibers": "^2.0.0",
"gas-local": "^1.3.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^4.0.2",
"gulp-expose": "0.0.7",
"gulp-rename": "^1.2.2",
"jsdoc": "^3.5.5",
"mocha": "^4.1.0"
},
"scripts": {
"preversion": "npm test && clasp push",
"version": "npm run dist && git add -A dist",
"postversion": "MESSAGE=$(git log -1 --pretty=%B) && clasp version $MESSAGE",
"dist": "gulp dist",
"lint": "gulp lint",
"doc": "jsdoc -c jsdoc.json src/*.js README.md",
"push": "clasp push",
"test": "mocha"
}
}