-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.44 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.44 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "hubot-pager-me",
"description": "PagerDuty integration for Hubot",
"version": "4.2.0",
"author": "Josh Nichols <technicalpickles@github.com>",
"license": "MIT",
"homepage": "https://github.com/hubot-archive/hubot-pager-me/",
"keywords": [
"hubot",
"hubot-scripts",
"pagerduty"
],
"repository": {
"type": "git",
"url": "git://github.com/hubot-archive/hubot-pager-me.git"
},
"bugs": {
"url": "https://github.com/hubot-archive/hubot-pager-me/issues"
},
"peerDependencies": {
"hubot": ">=3 || 0.0.0-development"
},
"dependencies": {
"@pagerduty/pdjs": "^2.2.4",
"async": "^3.2.6",
"moment-timezone": "^0.6.1",
"nyc": "^18.0.0",
"prettier": "^3.8.1"
},
"devDependencies": {
"chai": "^6.2.2",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"mocha": "^11.7.5",
"sinon": "^21.0.3",
"sinon-chai": "^4.0.1"
},
"main": "index.js",
"types": "src/index.d.ts",
"nyc": {
"include": [
"src/**/*.js"
]
},
"scripts": {
"test": "script/test",
"test-with-coverage": "nyc --reporter=text script/test",
"lint": "eslint src/**/*.js index.js test/**/*.js",
"lint:fix": "eslint --fix src/**/*.js index.js test/**/*.js",
"prepare": "husky",
"format": "prettier --config .prettierrc **/*.js --write"
},
"files": [
"src/**/*.js",
"src/**/*.d.ts",
"index.js"
],
"volta": {
"node": "20.20.2"
}
}