-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 789 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "gcp-cloud-functions-typescript-starter",
"version": "1.0.0",
"description": "Google Cloud Functions TypeScript starter project",
"main": "index.js",
"scripts": {
"deploy-local": "tsc && functions deploy helloWorldHTTP --trigger-http",
"package-zip(windows)": "tsc && powershell Compress-Archive -Force -LiteralPath index.js, package.json, settings.json -DestinationPath helloWorld.zip",
"package-zip(linux)": "tsc && zip helloWorld.zip index.js package.json settings.json"
},
"author": "Aleksandr Sokolovskii",
"license": "Apache-2.0",
"devDependencies": {
"@types/express": "^4.0.0",
"@types/node": "^6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/amsokol/gcp-cloud-functions-typescript-starter.git"
}
}