-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.75 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
{
"name": "@immobiliarelabs/dats",
"version": "5.1.0",
"description": "Minimalistic zero-dependencies UDP/TCP statsd client for Node.js",
"bin": {
"dats": "./dist/dats-cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"nodejs",
"javascript",
"client",
"npm",
"typescript",
"tcp",
"metrics",
"udp",
"statsd",
"ipv6-support apn",
"timing",
"gauge",
"counter",
"sampling"
],
"scripts": {
"precompile": "npm run build",
"compile": "pkg -c pkg.config.json dist/dats-cli.js ",
"build": "tsc -p tsconfig.json",
"build:watch": "npm run build -- -w",
"lint": "eslint --fix --ignore-path .gitignore .",
"style:lint": "eslint src --ext .ts",
"style:prettier": "prettier \"src/**/*.ts\" --list-different --write",
"test": "nyc --reporter=lcov --reporter=text-summary ava -v && nyc check-coverage --lines 95",
"test:watch": "ava -w",
"toc": "markdown-toc -i README.md",
"prepare": "node prepare.mjs || echo 'Skipping prepare'"
},
"repository": {
"type": "git",
"url": "[email protected]:immobiliare/dats.git"
},
"homepage": "https://github.com/immobiliare/dats",
"bugs": {
"url": "https://github.com/immobiliare/dats/issues"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@saithodev/semantic-release-backmerge": "^3.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@types/node": "^20.4.2",
"@types/sinon": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.4.1",
"ava": "^5.0.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.2",
"is-ci": "^3.0.0",
"lint-staged": "^15.0.1",
"markdown-toc": "^1.2.0",
"nyc": "^15.0.1",
"pkg": "^5.8.0",
"prettier": "^3.0.0",
"sinon": "^17.0.1",
"strip-ansi-cli": "^3.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.2"
},
"volta": {
"node": "18.18.0",
"npm": "8.1.0"
}
}