-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "statsd-system-agent",
"version": "0.1.0",
"description": "Statsd client for system metrics",
"main": "./dist/app.js",
"types": "./dist/app.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"cov-rename": "mv ./coverage/coverage-final.json ./coverage/coverage-$0.json",
"lint": "eslint --fix ./src/**/*.ts ./tests/**/*.ts",
"jest": "jest --config .jestrc.json",
"unit": "yarn jest ./tests/unit && yarn cov-rename unit",
"test": "yarn clean && yarn unit",
"build": "tsc -p ./source && cp -R ./source/configs/* ./dist/configs",
"clean": "rm -rf ./dist ./coverage",
"start": "node --experimental-specifier-resolution=node dist/app.js"
},
"keywords": [],
"author": "Anton Sidelnikov <a.sidelnikov@t-systems.com>",
"license": "Apache-2.0",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/eslint": "^7.2.7",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.32",
"@types/underscore": "^1.11.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"codecov": "^3.8.1",
"eslint": "^7.21.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"jest-websocket-mock": "^2.2.0",
"mock-socket": "^9.0.3",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/fs-extra": "^9.0.8",
"@types/systemjs": "^6.1.0",
"change-case": "^4.1.2",
"debug": "^4.3.1",
"disk-stat": "^1.0.4",
"fs-extra": "^9.1.0",
"hot-shots": "^8.3.0",
"systeminformation": "^5.6.4",
"underscore": "^1.12.0"
},
"directories": {
"lib": "dist",
"test": "tests"
}
}