-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 1.01 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
{
"name": "dogstatsd-2-statsd",
"description": "Listen on UDP 8125 for DogStatsD-formatted metrics. Translate those to StatsD format. Send to 8135.",
"version": "1.0.4",
"license": "MIT",
"main": "index.js",
"devDependencies": {
"eslint": "9.16.0",
"prettier": "3.4.2"
},
"scripts": {
"prettier-rc": "prettier .prettierrc --write",
"prettier-cjs": "prettier eslint.config.cjs --write",
"prettier-index": "prettier index.js --write",
"prettier-package": "prettier package.json --write",
"prettier": "npm run prettier-rc && npm run prettier-cjs && npm run prettier-index && npm run prettier-package",
"eslint-cjs": "eslint eslint.config.cjs",
"eslint-index": "eslint index.js",
"eslint": "npm run eslint-cjs && npm run eslint-index",
"format-lint": "npm run prettier && npm run eslint",
"test": "echo \"Functional tests will be performed on GitHub via this project's workflows!\"",
"dist": "npm install && npm run format-lint && echo \"\nReady for submission!\""
}
}