forked from scoutapp/scout_apm_node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.33 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@scout_apm/scout-apm",
"version": "0.1.11-rc.1",
"description": "Scout APM Node Agent",
"main": "dist/lib/index.js",
"repository": "[email protected]:scoutapp/scout_apm_node.git",
"author": "vados-scout <[email protected]>",
"license": "MIT",
"keywords": [
"observability",
"metrics",
"logging",
"tracing",
"monitoring",
"tools",
"application-monitoring"
],
"bugs": {
"url": "https://github.com/scoutapp/scout_apm_node/issues"
},
"homepage": "https://github.com/scoutapp/scout_apm_node#readme",
"scripts": {
"build": "./node_modules/.bin/tsc -p tsconfig.json",
"build-watch": "./node_modules/.bin/tsc --watch -p tsconfig.json",
"lint": "./node_modules/.bin/tslint -p tsconfig.json",
"test": "yarn lint && yarn test-unit && yarn test-int && yarn test-e2e && yarn test-integration-pg && yarn test-integration-mysql",
"test-unit": "./node_modules/.bin/tape 'dist/test/**/*.unit.js'",
"test-int": "./node_modules/.bin/tape 'dist/test/**/*.int.js'",
"test-e2e": "./node_modules/.bin/tape 'dist/test/**/*.e2e.js'",
"test-dashboard-send": "./node_modules/.bin/tape 'dist/test/dashboard-send.e2e.js'",
"test-integration-pg": "./node_modules/.bin/tape 'dist/test/integrations/pg.e2e.js'",
"test-integration-mysql": "./node_modules/.bin/tape 'dist/test/integrations/mysql.e2e.js'",
"test-integration-mysql2": "./node_modules/.bin/tape 'dist/test/integrations/mysql2.e2e.js'",
"test-integration-pug": "./node_modules/.bin/tape 'dist/test/integrations/pug.e2e.js'",
"test-integration-mustache": "./node_modules/.bin/tape 'dist/test/integrations/mustache.e2e.js'",
"test-integration-ejs": "./node_modules/.bin/tape 'dist/test/integrations/ejs.e2e.js'"
},
"types": "index.d.ts",
"files": [
"index.d.ts",
"dist/lib/**/*"
],
"devDependencies": {
"@types/express": "^4.16.1",
"@types/mysql": "^2.15.8",
"@types/supertest": "^2.0.7",
"app-root-dir": "^1.0.2",
"ejs": "^3.0.1",
"express": "^4.16.4",
"get-port": "^5.1.0",
"http-proxy-middleware": "^1.0.4",
"mustache": "^4.0.0",
"mustache-express": "^1.3.0",
"mysql": "^2.17.1",
"mysql2": "^2.1.0",
"nuxt": "^2.12.2",
"pg": "^7.17.0",
"pug": "^2.0.4",
"randomstring": "^1.1.5",
"sequelize": "^5.21.6",
"sha256-file": "^1.0.0",
"supertest": "^4.0.2",
"tape": "^4.12.1",
"tempfile": "^3.0.0",
"tslint": "^5.14.0",
"typescript": "^3.7.3"
},
"dependencies": {
"@types/download": "6.2.4",
"@types/ejs": "^3.0.0",
"@types/fs-extra": "5.0.5",
"@types/generic-pool": "3.1.9",
"@types/hasha": "3.0.0",
"@types/mustache": "^4.0.0",
"@types/on-finished": "2.3.1",
"@types/pug": "^2.0.4",
"@types/semver": "5.5.0",
"@types/tape": "4.2.33",
"@types/tmp": "0.0.34",
"@types/uuid": "3.4.4",
"app-root-path": "^3.0.0",
"cls-hooked": "^4.2.2",
"continuation-local-storage": "^3.2.1",
"detect-libc": "1.0.3",
"download": "7.1.0",
"fs-extra": "7.0.1",
"generic-pool": "3.6.1",
"hasha": "4.0.1",
"on-finished": "2.3.0",
"promise-timeout": "^1.3.0",
"require-in-the-middle": "^5.0.2",
"semver": "^7.1.1",
"snake-case": "3.0.2",
"stacktrace-js": "^2.0.2",
"tmp": "0.0.33",
"tmp-promise": "1.0.5",
"uuid": "3.3.2",
"winston": "^3.2.1"
}
}