-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 KB
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
{
"name": "monitored",
"version": "0.1.5",
"description": "A utility for monitoring services",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "prettier --write '**/*.{ts,js,json}'",
"build": "rm -rf dist && tsc -p tsconfig.json",
"example": "ts-node example/run.ts",
"prepublishOnly": "yarn build",
"test": "jest --config jest.config.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Soluto/monitored.git"
},
"author": "Soluto",
"license": "MIT",
"bugs": {
"url": "https://github.com/Soluto/monitored/issues"
},
"homepage": "https://github.com/Soluto/monitored#readme",
"dependencies": {
"hot-shots": "^8.5.0",
"prom-client": "^13.2.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.6.1",
"dotenv": "^10.0.0",
"husky": "^7.0.1",
"jest": "^27.4.0",
"jest-mock": "^27.5.1",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
},
"lint-staged": {
"*.{ts,js,json}": [
"prettier --write"
]
}
}