-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "webfunc",
"version": "0.15.0",
"description": "Lightweight HTTP handler for Google Cloud Functions. It supports CORS and also assists in initialization of web app projects hosted on Google Cloud Functions.",
"contributors": [
"Nicolas Dao <[email protected]> (https://neap.co/)"
],
"main": "src/index.js",
"scripts": {
"test": "mocha",
"lint": "eslint index.js test/ src/ --fix",
"push": "git push --follow-tags origin master && npm publish",
"rls": "standard-version --release-as",
"v": "node -e \"console.log(require('./package.json').version)\""
},
"repository": {
"type": "git",
"url": "https://github.com/nicolasdao/webfunc.git"
},
"keywords": [
"cors",
"google-cloud-functions",
"http-handler",
"google",
"cloud",
"functions"
],
"author": "Nicolas Dao",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nicolasdao/webfunc/issues"
},
"homepage": "https://github.com/nicolasdao/webfunc#readme",
"dependencies": {
"append-query": "^2.0.1",
"colors": "^1.1.2",
"express": "^4.16.2",
"http-errors": "^1.6.1",
"node-mocks-http": "^1.6.4",
"path-to-regexp": "^8.2.0",
"raw-body": "^2.3.2",
"shortid": "^2.2.8",
"vary": "^1.1.2"
},
"devDependencies": {
"chai": "^4.1.0",
"eslint": "^9.13.0",
"mocha": "^10.7.3",
"standard-version": "^9.5.0"
}
}