-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
49 lines (49 loc) · 1.55 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
45
46
47
48
49
{
"name": "google-cloud-functions-typescript",
"version": "0.0.4",
"description": "This is a TypeScript based Cloud Functions template.",
"main": "index.js",
"config": {
"function_name": "helloWorld",
"region": "",
"gcp_project": "",
"runtime": ""
},
"scripts": {
"clean": "rimraf \"functions/*\"",
"lint": "tslint --project tsconfig.json",
"tsc": "tsc",
"cp-package": "copyfiles package.json functions/src",
"build": "run-s clean lint tsc cp-package",
"test": "mocha \"functions/test/\"",
"deploy": "gcloud functions deploy $npm_package_config_function_name --runtime $npm_package_config_runtime --region=$npm_package_config_region --trigger-http --project $npm_package_config_gcp_project"
},
"bin": {
"create-project": "./cli.js"
},
"keywords": [
"cloud",
"functions",
"typescript"
],
"author": "\"@flatfisher <[email protected]> (https://kyohei.flatfish.jp)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/chai": "4.3.4",
"@types/chai-http": "4.2.0",
"@types/express": "4.17.17",
"@types/mocha": "9.1.1",
"@types/moment": "2.13.0",
"@types/node": "18.14.0",
"chai": "4.3.7",
"chai-http": "4.3.0",
"copyfiles": "2.4.1",
"express": "4.18.2",
"mocha": "9.2.2",
"npm-run-all2": "5.0.0",
"rimraf": "3.0.2",
"tslint": "6.1.3",
"typescript": "4.9.5"
}
}