-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "@q42philips/statsd-daemon",
"version": "1.1.2",
"description": "Simple statsd deamon to observe metrics being emitted on localhost",
"main": "src/index.js",
"scripts": {
"postinstall": "npm run fix-registry-protocols && npm run checklicenses",
"start": "node src/index.js",
"test": "npm run lint && npm audit",
"lint": "eslint . --max-warnings 0 --ignore-path .eslintignore",
"fix-registry-protocols": "sed -i.bak -e 's/http:/https:/' -- package-lock.json && rm -- package-lock.json.bak",
"checklicenses": "npx --userconfig .npmrc @q42philips/license-checker"
},
"bin": {
"statsd-daemon": "src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Q42Philips/statsd-daemon.git"
},
"keywords": [
"nodejs",
"statsd"
],
"author": "Mark van Straten <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Q42Philips/statsd-daemon/issues"
},
"homepage": "https://github.com/Q42Philips/statsd-daemon#readme",
"devDependencies": {
"eslint": "^7.6.0"
},
"dependencies": {
"chalk": "^4.1.0",
"update-notifier": "^4.1.0"
}
}