-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 985 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
{
"name": "tinypg-trace-plugin",
"version": "1.0.0",
"description": "StackDriver Trace plugin for TinyPg",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/alexmunda/tinypg-trace-plugin.git",
"homepage": "https://github.com/alexmunda/tinypg-trace-plugin",
"author": "Alex Munda <[email protected]>",
"license": "MIT",
"engines": {
"node": ">= 8.0.0"
},
"keywords": [
"postgres",
"pg",
"tinypg",
"sql",
"stackdriver",
"trace"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf './dist/' './src/**/*.js' './src/**/*.map'",
"prepublish": "npm run build"
},
"dependencies": {
"lodash": "4.17.11",
"shimmer": "1.2.0"
},
"devDependencies": {
"@google-cloud/trace-agent": "^3.3.1",
"@types/lodash": "^4.14.118",
"@types/pg": "^7.4.11",
"pg": "^7.4.1",
"rimraf": "^2.6.2",
"tinypg": "^4.0.0",
"typescript": "^3.1.6"
}
}