-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "nosy-cat",
"version": "0.0.1",
"description": "Anomaly & root-cause detection on distributed systems",
"devDependencies": {
"@types/socket.io": "^2.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.3"
},
"scripts": {
"ci:install-all-projects": "./scripts/install-all-projects.sh",
"test": "./scripts/test-all-projects.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toblich/nosy-cat.git"
},
"keywords": [
"monitoring"
],
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/toblich/nosy-cat/issues"
},
"homepage": "https://github.com/toblich/nosy-cat#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,json,css,md}": [
"pretty-quick --staged"
],
"*.{ts, js}": [
"tslint -c ./tslint.json --fix"
]
},
"dependencies": {}
}