-
Notifications
You must be signed in to change notification settings - Fork 160
/
package.json
71 lines (71 loc) · 1.92 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
{
"name": "@google-cloud/functions-framework",
"version": "3.4.2",
"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": "4.17.21",
"body-parser": "^1.18.3",
"cloudevents": "^8.0.0",
"express": "^4.16.4",
"minimist": "^1.2.7",
"on-finished": "^2.3.0",
"read-pkg-up": "^7.0.1",
"semver": "^7.3.5"
},
"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.43.1",
"@types/body-parser": "1.19.5",
"@types/minimist": "1.2.5",
"@types/mocha": "9.1.1",
"@types/node": "^22.0.0",
"@types/on-finished": "2.3.4",
"@types/semver": "^7.3.6",
"@types/sinon": "^17.0.0",
"@types/supertest": "2.0.16",
"gts": "5.3.0",
"mocha": "9.2.2",
"pack-n-play": "^1.0.0-2",
"sinon": "^15.0.0",
"supertest": "6.3.4",
"typescript": "5.0.4"
}
}