-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
72 lines (72 loc) · 1.94 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@google-cloud/functions-framework",
"version": "3.4.3",
"description": "FaaS (Function as a service) framework for writing portable Node.js functions",
"engines": {
"node": ">=10.0.0"
},
"repository": "GoogleCloudPlatform/functions-framework-nodejs",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"exports": {
".": {
"types": "./build/src/index.d.ts",
"default": "./build/src/index.js"
},
"./testing": {
"types": "./build/src/testing.d.ts",
"default": "./build/src/testing.js"
}
},
"dependencies": {
"@types/express": "^5.0.0",
"body-parser": "^1.18.3",
"cloudevents": "^8.0.2",
"express": "^4.21.2",
"minimist": "^1.2.8",
"on-finished": "^2.3.0",
"read-pkg-up": "^7.0.1",
"semver": "^7.6.3"
},
"scripts": {
"test": "mocha build/test --recursive",
"build": "npm run clean && npm run compile",
"conformance": "./run_conformance_tests.sh",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"docs": "api-extractor run --local --verbose",
"watch": "npm run compile -- --watch",
"prepare": "npm run build",
"pretest": "npm run compile"
},
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts"
],
"bin": {
"functions-framework": "./build/src/main.js",
"functions-framework-nodejs": "./build/src/main.js"
},
"author": "Google Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@microsoft/api-extractor": "^7.48.0",
"@types/body-parser": "1.19.5",
"@types/minimist": "1.2.5",
"@types/mocha": "^9.1.1",
"@types/node": "^22.10.1",
"@types/on-finished": "2.3.4",
"@types/semver": "^7.5.8",
"@types/sinon": "^17.0.3",
"@types/supertest": "6.0.2",
"gts": "5.3.1",
"mocha": "^9.2.2",
"nise": "5.1.4",
"pack-n-play": "2.0.0",
"sinon": "15.0.1",
"supertest": "^6.3.4",
"typescript": "5.0.3"
}
}