-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.59 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
{
"name": "@immobiliarelabs/dats",
"version": "3.0.1",
"description": "Minimalistic zero-dependencies UDP/TCP statsd client for Node.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": {
"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.js || 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": ">=10.2",
"npm": ">=6"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@saithodev/semantic-release-backmerge": "^2.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.2",
"@types/node": "^17.0.8",
"@types/sinon": "^10.0.4",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"ava": "^4.0.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"is-ci": "^3.0.0",
"lint-staged": "^13.0.0",
"markdown-toc": "^1.2.0",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"sinon": "^14.0.0",
"strip-ansi-cli": "^3.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.2.3"
},
"volta": {
"node": "16.13.0",
"npm": "8.1.0"
}
}