-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.18 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
{
"name": "honeycomb-support",
"version": "1.0.0",
"description": "Helpful stuff for adding honeycomb to a nodejs app",
"main": "index.js",
"repository": "[email protected]:geckoboard/js-honeycomb-support.git",
"author": "Glen Mailer <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint --max-warnings 0 .",
"lint-ci": "bash -o pipefail -c 'eslint --format junit --ext .js,.ts ./instrumentation | tee test-reports/eslint.xml'",
"typecheck": "tsc",
"test": "jest",
"test-ci": "JEST_JUNIT_OUTPUT_FILE=test-reports/jest.xml jest --maxWorkers 4 --coverage --testResultsProcessor jest-junit"
},
"peerDependencies": {
"honeycomb-beeline": "^3.3.0"
},
"devDependencies": {
"@types/body": "^5.1.1",
"@types/jest": "^27.0.3",
"@types/shimmer": "^1.0.2",
"body": "^5.1.0",
"eslint": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"honeycomb-beeline": "^3.3.0",
"jest": "^27.4.3",
"jest-junit": "^13.0.0",
"prettier": "^2.5.0",
"selfsigned": "^1.10.11",
"typescript": "^4.5.2",
"typescript-xunit-xml": "^1.0.0"
},
"dependencies": {
"shimmer": "^1.2.1"
}
}