forked from PopGoesTheWza/swgoh-help-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "gas-swgoh-help-api",
"version": "1.0.4",
"description": "SwgohHelp API for GAS",
"author": {
"name": "Guillaume Contesso",
"email": "[email protected]",
"url": "https://discord.gg/ywzJEaQ"
},
"homepage": "https://discord.gg/ywzJEaQ",
"license": "MIT",
"main": "index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write src/**.ts src/**.json",
"lint": "tslint --project ./tsconfig.json",
"upload": "clasp push",
"document": "typedoc src/index.ts --out docs/ --mode file --ignoreCompilerErrors --name \"SWGoH.help API client for GAS\" --readme none --theme minimal && touch docs/.nojekyll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PopGoesTheWza/swgoh-help-api.git"
},
"keywords": [
"google-apps-script",
"gas",
"typescript",
"star wars",
"swgoh"
],
"dependencies": {
"@google/clasp": "^2.2.1"
},
"devDependencies": {
"@types/google-apps-script": "^0.0.58",
"prettier": "^1.18.2",
"tslint": "^5.19.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typedoc": "^0.15.0",
"typescript": "^3.6.2"
}
}