-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.69 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
50
51
52
53
54
55
56
57
{
"name": "",
"version": "0.0.0",
"description": "",
"source": "build/src/index.js",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"engines": {
"node": ">=14"
},
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"test": "mocha build/test/**/*.test.js",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run lint",
"start": "functions-framework --target=manifest",
"deploy": "gcloud functions deploy manifest --entry-point manifest --runtime nodejs16 --memory 1024MB --trigger-http --allow-unauthenticated",
"deploy-doc": "open https://github.com/GoogleCloudPlatform/functions-framework-nodejs/blob/master/docs/typescript.md",
"start:dev": "npm run compile && NODE_ENV=development npm run start"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.0",
"@types/node": "^14.11.2",
"@types/node-fetch": "^2.6.1",
"@types/sinon": "^10.0.11",
"@types/tough-cookie": "^4.0.1",
"@types/validator": "^13.7.1",
"chai": "^4.3.6",
"gts": "^3.1.0",
"mocha": "^9.2.1",
"node-mocks-http": "^1.11.0",
"sinon": "^13.0.1",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@aws-sdk/hash-node": "^3.53.0",
"@aws-sdk/protocol-http": "^3.53.0",
"@aws-sdk/s3-request-presigner": "^3.53.1",
"@aws-sdk/url-parser": "^3.53.0",
"@aws-sdk/util-format-url": "^3.53.0",
"@google-cloud/functions-framework": "^3.0.0",
"dotenv": "^16.0.0",
"node-fetch": "^2.6.7",
"validator": "^13.7.0"
}
}