This repository has been archived by the owner on Nov 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.97 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
{
"name": "gcf-helper",
"version": "0.9.3",
"description": "Google Cloud Functions Helper",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:google-cloud-tools/node-faas-helper.git",
"author": "Christian Froehlingsdorf <chris@5cf.de>",
"license": "SEE LICENSE IN ./LICENSE",
"private": false,
"scripts": {
"tsv": "tsc -v",
"prepublishOnly": "npm run build",
"build": "rm -rf dist/ && node_modules/.bin/tsc -p tsconfig.json",
"lint": "node_modules/.bin/tslint -c tslint.json -p tsconfig.json",
"fix": "node_modules/.bin/tslint -c tslint.json -p tsconfig.json --fix",
"test:only": "TS_NODE_PROJECT='tsconfig.test.json' _mocha",
"test": "npm run test:only",
"upgrade-interactive": "npm-check --update"
},
"keywords": [
"google",
"cloud",
"functions",
"helper",
"bigquery",
"pubsub",
"error",
"faas",
"framework",
"bootstrap",
"prometheus",
"metrics",
"roachstorm",
"pubsub",
"kms",
"sql"
],
"dependencies": {
"uuid": "~3.3.2"
},
"devDependencies": {
"@google-cloud/bigquery": "^4.1.3",
"@google-cloud/kms": "^1.1.1",
"@google-cloud/pubsub": "^0.30.0",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/express": "^4.17.0",
"@types/google-cloud__kms": "^0.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "~12.0.8",
"@types/pg": "^7.4.14",
"@types/uuid": "~3.4.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"express": "^4.17.1",
"mocha": "^6.1.4",
"npm-check": "^5.9.0",
"pg": "^7.11.0",
"ts-node": "^8.3.0",
"tslint": "~5.17.0",
"typescript": "~3.5.2"
},
"peerDependencies": {
"@google-cloud/bigquery": "^4.1.3",
"@google-cloud/kms": "^1.1.1",
"@google-cloud/pubsub": "^0.30.0",
"@types/express": "^4.17.0",
"@types/google-cloud__kms": "^0.2.0",
"@types/pg": "^7.4.14",
"express": "^4.17.1",
"pg": "^7.11.0"
}
}