-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
41 lines (41 loc) · 988 Bytes
/
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
{
"name": "@google-cloud/functions-as-a-service",
"version": "1.0.0",
"description": "A demo showing GMP + GCF.",
"scripts": {
"build": "tsc --watch --declaration",
"watch": "npm-watch local",
"local": "functions-framework",
"deploy": "cd gcf && npm run deploy",
"test": "cd gmp && npm run test",
"clean": "find . -name '*.js' -type f -delete"
},
"private": true,
"repository": {
"type": "git",
"url": "sso://devrel/samples/cloud/sushi-as-a-service"
},
"watch": {
"local": "*.js"
},
"keywords": [
"GCF",
"GMP",
"functions",
"serverless",
"maps"
],
"author": "Grant Timmerman, Alex Muramoto, Angela Yu",
"license": "MIT",
"devDependencies": {
"@google-cloud/functions-framework": "^1.1.0",
"npm-watch": "^0.6.0",
"tslint": "^5.16.0",
"typescript": "^3.4.4"
},
"dependencies": {
"@google/maps": "^0.5.5",
"@types/express": "^4.16.1",
"@types/google__maps": "^0.5.5"
}
}