-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.62 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
{
"name": "alertpanda",
"version": "1.0.0",
"description": "A simple utility to send Slack alerts for application monitoring. (a very alert panda alerting humans and bots)",
"main": "build/main/index.js",
"types": "build/main/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"lint:test": "eslint ./src --ext .ts,.json",
"lint:fix": "eslint ./src --ext .ts,.json --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint:test",
"postversion": "git push && git push --tags",
"coveralls": "coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "https://github.com/prth/alertpanda.git"
},
"homepage": "https://github.com/prth/alertpanda#readme",
"bugs": {
"url": "https://github.com/prth/alertpanda/issues"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "~25.2.3",
"@types/node": "~13.13.52",
"@typescript-eslint/eslint-plugin": "~2.34.0",
"@typescript-eslint/parser": "~2.34.0",
"coveralls": "~3.1.1",
"eslint": "~6.8.0",
"eslint-config-prettier": "~6.15.0",
"eslint-plugin-prettier": "~3.4.1",
"eslint-plugin-tsdoc": "~0.2.14",
"jest": "~25.5.4",
"metro-memory-fs": "~0.59.0",
"mkdirp": "~1.0.4",
"npm-package-to-env": "~1.0.1",
"prettier": "~2.4.1",
"ts-jest": "~25.5.1",
"ts-node": "~8.10.2",
"typescript": "~3.9.10"
},
"dependencies": {
"axios": "~0.19.2",
"cosmiconfig": "~6.0.0",
"lodash": "~4.17.21",
"read-pkg": "~5.2.0"
},
"keywords": [
"monitoring",
"alert",
"slack"
]
}