-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 925 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 925 Bytes
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
{
"name": "gas-github",
"version": "0.0.10",
"description": "Github API client for Google Apps Script",
"repository": "https://github.com/mahaker/gas-github",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc",
"lint": "eslint --ext .ts src test",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"keywords": [
"gas",
"google-apps-script",
"github"
],
"author": "Hideaki Matsunami <carbon0409@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/google-apps-script": "^1.0.33",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"jest": "^26.6.2",
"ts-jest": "^26.4.3",
"typescript": "^4.3.2"
},
"dependencies": {
"@octokit/types": "^6.34.0"
}
}