-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathpackage.json
60 lines (60 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
58
59
60
{
"name": "@google-cloud/functions-framework",
"version": "2.0.0",
"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",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"minimist": "^1.2.5",
"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 && npm run docs",
"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.18.16",
"@types/body-parser": "1.19.1",
"@types/express": "4.17.13",
"@types/minimist": "1.2.2",
"@types/mocha": "9.0.0",
"@types/node": "14.17.31",
"@types/on-finished": "2.3.1",
"@types/semver": "^7.3.6",
"@types/sinon": "^10.0.0",
"@types/supertest": "2.0.11",
"gts": "3.1.0",
"mocha": "9.1.2",
"pack-n-play": "^1.0.0-2",
"sinon": "^11.0.0",
"supertest": "6.1.6",
"typescript": "^4.4.4"
}
}