-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.04 KB
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
{
"name": "corvid-stackdriver-telemetry-adapter",
"description": "corvid telemetry sink example for stackdriver on appengine",
"version": "0.0.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/wix/corvid-stackdriver-telemetry-adapter"
},
"engines": {
"node": ">=10"
},
"files": [
"app"
],
"author": {
"name": "San Golan",
"email": "sang@wix.com"
},
"scripts": {
"clean": "rm -rf node_modules package-lock.json",
"start": "node app/index.js",
"test": "jest",
"posttest": "npm run lint",
"lint": "eslint .",
"deploy": "gcloud app deploy"
},
"dependencies": {
"@google-cloud/logging": "^4.4.0",
"body-parser": "^1.18.3",
"express": "^4.16.3"
},
"devDependencies": {
"eslint": "^5.15.2",
"eslint-config-google": "^0.12.0",
"jest": "^24.0.0",
"node-fetch": "^2.3.0"
},
"cloud-repo-tools": {
"test": {
"app": {
"msg": "Hello, world!"
}
},
"requiresKeyFile": true,
"requiresProjectId": true
}
}