forked from GoogleCloudPlatform/functions-framework-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "@google-cloud/functions-framework",
"version": "1.7.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/invoker.d.ts",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"minimist": "^1.2.0",
"on-finished": "^2.3.0"
},
"scripts": {
"test": "mocha build/test",
"test-conformance": "cd test/conformance && ./run-conformance-tests.sh",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"files": [
"build/src/*.js",
"build/src/*.d.ts"
],
"bin": {
"functions-framework": "./build/src/index.js",
"functions-framework-nodejs": "./build/src/index.js"
},
"author": "Google Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@types/body-parser": "1.17.0",
"@types/express": "4.17.7",
"@types/minimist": "1.2.0",
"@types/mocha": "8.0.1",
"@types/node": "11.15.20",
"@types/on-finished": "2.3.1",
"@types/supertest": "2.0.10",
"gts": "2.0.2",
"mocha": "8.1.0",
"power-assert": "1.6.1",
"supertest": "4.0.2",
"typescript": "3.9.7"
}
}