-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 994 Bytes
/
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
{
"name": "modofun-trace-agent-plugin",
"description": "Modofun plugin for the Google Stackdriver Trace agent",
"version": "1.0.0",
"author": "Filipe Tavares",
"license": "MIT",
"repository": "modofunjs/modofun-trace-agent-plugin",
"homepage": "https://github.com/modofunjs/modofun-trace-agent-plugin",
"keywords": [
"serverless",
"microservices",
"nanoservices",
"google-cloud",
"cloud",
"functions",
"trace",
"agent",
"stackdriver"
],
"engines": {
"node": ">= 6.10"
},
"main": "index.js",
"files": [
"LICENSE",
"README.md",
"index.js"
],
"scripts": {
"lint": "eslint index.js",
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.9.0",
"mocha": "^4.0.1",
"modofun": "^1.0.0",
"node-mocks-http": "^1.6.6",
"nyc": "^11.2.1"
}
}