forked from OpenFunction/functions-framework-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.5 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@openfunction/functions-framework",
"version": "0.6.1",
"description": "FaaS (Function as a service) framework for writing portable Node.js functions",
"engines": {
"node": ">=13.0.0"
},
"repository": "openfunction/functions-framework-nodejs",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"exports": {
".": "./build/src/index.js",
"./testing": "./build/src/testing.js"
},
"dependencies": {
"@dapr/dapr": "2.5.0",
"body-parser": "^1.20.1",
"cloudevents": "^8.0.0",
"debug": "^4.3.4",
"express": "^4.18.2",
"express-interceptor": "^1.2.0",
"http-terminator": "^3.2.0",
"lodash": "^4.17.21",
"minimist": "^1.2.7",
"on-finished": "^2.4.1",
"read-pkg-up": "^7.0.1",
"semver": "^7.3.8",
"skywalking-backend-js": "^0.7.0",
"ts-node": "^10.9.1"
},
"scripts": {
"test": "cross-env DEBUG=common:*,ofn:* mocha build/test -t 60000 --recursive --exit",
"build": "npm run clean && npm run compile",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"docs": "npm run compile && api-extractor run --local --verbose",
"watch": "npm run compile -- --watch",
"prepare": "npm run build",
"pretest": "npm run compile",
"prepack": "clean-pkg-json"
},
"prepush": [
"build",
"test"
],
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts"
],
"bin": {
"functions-framework": "./build/src/main.js",
"functions-framework-nodejs": "./build/src/main.js"
},
"author": "OpenFunction",
"license": "Apache-2.0",
"devDependencies": {
"@microsoft/api-extractor": "^7.33.5",
"@types/body-parser": "1.19.2",
"@types/debug": "^4.1.7",
"@types/express": "4.17.14",
"@types/google-protobuf": "^3.15.6",
"@types/lodash": "^4.14.187",
"@types/minimist": "1.2.2",
"@types/mocha": "10.0.0",
"@types/node": "14.18.11",
"@types/node-fetch": "^2.6.2",
"@types/on-finished": "2.3.1",
"@types/semver": "^7.3.13",
"@types/shelljs": "^0.8.11",
"@types/sinon": "10.0.11",
"@types/supertest": "2.0.12",
"aedes": "0.47.0",
"clean-pkg-json": "^1.2.0",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"graphql-request": "^6.1.0",
"gts": "^3.1.1",
"mocha": "10.1.0",
"pack-n-play": "^2.0.1",
"pre-push": "^0.1.4",
"shelljs": "^0.8.5",
"sinon": "^16.1.0",
"supertest": "6.3.1",
"typescript": "^4.8.4",
"wait-on": "^7.0.1"
}
}