-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.38 KB
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
{
"name": "node-reporting",
"version": "1.6.2",
"description": "Reporting of metrics, logs and tracing for Node.js applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/cdambo/reporting.git"
},
"author": "Chanan Damboritz",
"license": "MIT",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest --forceExit --coverage --verbose --detectOpenHandles",
"watch-test": "yarn test --watchAll",
"lint": "eslint src/ test/ --ext .ts,.js",
"lint-fix": "yarn lint --fix",
"release": "yarn build && yarn publish"
},
"eslintIgnore": [
"dist/"
],
"dependencies": {
"lodash": "^4.17.11"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.134",
"@types/node-dogstatsd": "^0.0.4",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"node-dogstatsd": "^0.0.7",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
},
"peerDependencies": {
"node-dogstatsd": "^0.0.7"
}
}