-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.23 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
{
"name": "@dazn/pensieve",
"version": "0.4.6",
"description": "Pensieve is a npm package to be used in Node.js or TypeScript applications running on EC2/ECS with an in-host StadsD agent enabled, that provides custom metrics with useful context related to your application out of the box. ",
"scripts": {
"build": "gulp",
"test": "jest --clearCache && jest --testRegex=tests/unit/.*.ts$ --coverage --detectOpenHandles --forceExit",
"lint-fix": "eslint --fix \"./{src,tests}/**/*.ts\"",
"lint-check": "eslint \"./{src,tests}/**/*.ts\"",
"pack": "npm run build && eslint --fix ./lib/**/*.d.ts && npm pack",
"start-api-statsd": "ECS_CONTAINER_METADATA_FILE=./tests/resources/ECS_metadata.json ts-node examples/api/statsd/index.ts",
"start-api-apm": "ECS_CONTAINER_METADATA_FILE=./tests/resources/ECS_metadata.json ts-node examples/api/apm/index.ts"
},
"main": "lib/index.js",
"types": "lib/",
"files": [
"lib"
],
"engines": {
"node": ">=10"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/getndazn/pensieve.git"
},
"author": "[email protected]",
"license": "UNLICENSED",
"homepage": "https://github.com/getndazn/pensieve#readme",
"devDependencies": {
"@newrelic/aws-sdk": "^1.1.2",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.3",
"@types/newrelic": "^6.4.0",
"@types/node": "^13.13.8",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"axios": "^0.21.1",
"del": "^5.1.0",
"eslint": "^6.8.0",
"express": "^4.17.1",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.1",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-config": "^26.0.1",
"json2yaml": "^1.1.0",
"newrelic": "^6.7.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^25.5.1",
"ts-node": "^8.10.1",
"typemoq": "^2.1.0",
"typescript": "^3.9.3",
"yargs-parser": "^18.1.3"
},
"dependencies": {
"hot-shots": "^7.4.2"
},
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*"
]
},
"publishConfig": {
"@dazn:registry": "https://registry.npmjs.org/",
"access": "restricted"
}
}